no_singleline_whitespace_before_semicolons.rst 527 B

123456789101112131415161718192021222324252627
  1. ===================================================
  2. Rule ``no_singleline_whitespace_before_semicolons``
  3. ===================================================
  4. Single-line whitespace before closing semicolon are prohibited.
  5. Examples
  6. --------
  7. Example #1
  8. ~~~~~~~~~~
  9. .. code-block:: diff
  10. --- Original
  11. +++ New
  12. -<?php $this->foo() ;
  13. +<?php $this->foo();
  14. Rule sets
  15. ---------
  16. The rule is part of the following rule sets:
  17. - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
  18. - `@Symfony <./../../ruleSets/Symfony.rst>`_