123456789101112131415161718192021222324252627282930 |
- ========================================
- Rule ``no_leading_namespace_whitespace``
- ========================================
- The namespace declaration line shouldn't contain leading whitespace.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- - namespace Test8a;
- - namespace Test8b;
- +namespace Test8a;
- +namespace Test8b;
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
|