Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 728 Bytes

no_leading_namespace_whitespace.rst

File metadata and controls

32 lines (23 loc) · 728 Bytes

Rule no_leading_namespace_whitespace

The namespace declaration line shouldn't contain leading whitespace.

Examples

Example #1

--- Original
+++ New
 <?php
- namespace Test8a;
-    namespace Test8b;
+namespace Test8a;
+namespace Test8b;

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer
Using the @PhpCsFixer rule set will enable the no_leading_namespace_whitespace rule.
@Symfony
Using the @Symfony rule set will enable the no_leading_namespace_whitespace rule.