123456789101112131415161718192021222324252627282930313233343536373839 |
- ====================================
- Rule ``single_line_comment_spacing``
- ====================================
- Single-line comments must have proper spacing.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- -//comment 1
- -#comment 2
- -/*comment 3*/
- +// comment 1
- +# comment 2
- +/* comment 3 */
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
- References
- ----------
- - Fixer class: `PhpCsFixer\\Fixer\\Comment\\SingleLineCommentSpacingFixer <./../../../src/Fixer/Comment/SingleLineCommentSpacingFixer.php>`_
- - Test class: `PhpCsFixer\\Tests\\Fixer\\Comment\\SingleLineCommentSpacingFixerTest <./../../../tests/Fixer/Comment/SingleLineCommentSpacingFixerTest.php>`_
- The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.
|