no_trailing_whitespace_in_comment.rst 739 B

1234567891011121314151617181920212223242526272829303132333435
  1. ==========================================
  2. Rule ``no_trailing_whitespace_in_comment``
  3. ==========================================
  4. There MUST be no trailing spaces inside comment or PHPDoc.
  5. Examples
  6. --------
  7. Example #1
  8. ~~~~~~~~~~
  9. .. code-block:: diff
  10. --- Original
  11. +++ New
  12. <?php
  13. -// This is
  14. -// a comment.
  15. +// This is
  16. +// a comment.
  17. Rule sets
  18. ---------
  19. The rule is part of the following rule sets:
  20. - `@PER <./../../ruleSets/PER.rst>`_
  21. - `@PER-CS1.0 <./../../ruleSets/PER-CS1.0.rst>`_
  22. - `@PER-CS2.0 <./../../ruleSets/PER-CS2.0.rst>`_
  23. - `@PSR2 <./../../ruleSets/PSR2.rst>`_
  24. - `@PSR12 <./../../ruleSets/PSR12.rst>`_
  25. - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
  26. - `@Symfony <./../../ruleSets/Symfony.rst>`_