Automattic / phpcs-neutron-standard

A set of phpcs sniffs for PHP >7 development
MIT License
94 stars 7 forks source link

Add RequireParenthesisSpacingSniff #54

Closed sirbrillig closed 6 years ago

sirbrillig commented 6 years ago

This adds a sniff that implements the WordPress standard of spacing inside parenthesis:

if ( $foo ) {
  doSomething( $foo );
}

It can also fix instances where spaces need to be added.

Fixes #50