Rule ``not_operator_with_successor_space``
Logical NOT operators (``!``) should have one trailing whitespace.
Examples
Example #1 ~~~~~~~~~~
.. code-block:: diff
--- Original +++ New @@ -1,5 +1,5 @@ <?php
-if (!$bar) { +if (! $bar) { echo "Help!"; }
Science · Space · Astronomy
Logical NOT operators (``!``) should have one trailing whitespace.
.. code-block:: diff
--- Original +++ New @@ -1,5 +1,5 @@ <?php
-if (!$bar) { +if (! $bar) { echo "Help!"; }