123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ========================
- Rule ``clean_namespace``
- ========================
- Namespace must not contain spacing, comments or PHPDoc.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- -namespace Foo \ Bar;
- +namespace Foo\Bar;
- Example #2
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- -echo foo /* comment */ \ bar();
- +echo foo\bar();
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PHP80Migration <./../../ruleSets/PHP80Migration.rst>`_
- - `@PHP81Migration <./../../ruleSets/PHP81Migration.rst>`_
- - `@PHP82Migration <./../../ruleSets/PHP82Migration.rst>`_
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
|