aik099 / CodingStandard

The PHP_CodeSniffer coding standard I'm using on all of my projects
BSD 3-Clause "New" or "Revised" License
5 stars 2 forks source link

Don't allow space after `!` in conditional structures #66

Closed aik099 closed 9 years ago

aik099 commented 9 years ago

Example code:

if ( ! is_string($driver_class) ) {
// ...
}

Here no space should be added after !.

aik099 commented 9 years ago

Closed in favor of #55