Automattic / phpcs-neutron-standard

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

Handle too many spaces after parenthesis #56

Open sirbrillig opened 6 years ago

sirbrillig commented 6 years ago

In #54 we added required spacing inside parenthesis, but it does not check if there is more than one space.

I'd like to be able to transform this:

if (  isTrue() ) {

into this:

if ( isTrue() ) {