no_leading_namespace_whitespace.rst 553 B

123456789101112131415161718192021222324252627282930
  1. ========================================
  2. Rule ``no_leading_namespace_whitespace``
  3. ========================================
  4. The namespace declaration line shouldn't contain leading whitespace.
  5. Examples
  6. --------
  7. Example #1
  8. ~~~~~~~~~~
  9. .. code-block:: diff
  10. --- Original
  11. +++ New
  12. <?php
  13. - namespace Test8a;
  14. - namespace Test8b;
  15. +namespace Test8a;
  16. +namespace Test8b;
  17. Rule sets
  18. ---------
  19. The rule is part of the following rule sets:
  20. - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
  21. - `@Symfony <./../../ruleSets/Symfony.rst>`_