Would you consider to add a Sniff for logic not operator followed by a space? ``` php // changes if (!$someVar || !$x instanceOf 'stdClass') { // to if (! $someVar || ! $x instanceOf 'stdClass') { ``` In FriendsOfPHP/PHP-CS-Fixer they use the fix [logical_not_operators_with_successor_space](https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/1.11/Symfony/CS/Fixer/Contrib/LogicalNotOperatorsWithSuccessorSpaceFixer.php) Also, other developers and projects like http://auraphp.com/contributing/#standards use this style It would be great to have it on PHP_CodeSniffer (thanks for your great work!)