not_operator_with_space.rst 343 B

12345678910111213141516171819202122
  1. ================================
  2. Rule ``not_operator_with_space``
  3. ================================
  4. Logical NOT operators (``!``) should have leading and trailing whitespaces.
  5. Examples
  6. --------
  7. Example #1
  8. ~~~~~~~~~~
  9. .. code-block:: diff
  10. --- Original
  11. +++ New
  12. <?php
  13. -if (!$bar) {
  14. +if ( ! $bar) {
  15. echo "Help!";
  16. }