inpsyde / php-coding-standards

Style guide for writing consistent PHP for WordPress projects.
MIT License
98 stars 23 forks source link

Line length of use statements should not be checked #39

Closed tzimpel closed 4 years ago

tzimpel commented 4 years ago

Inpsyde.CodeQuality.LineLength.TooLong should not check for use statements.

When working with nested namespaces to organize code, length of namespaces can exceed 100 characters. This should not lead to validation errors against our coding standards.

gmazzap commented 4 years ago

Fixed in 6d0bda8

gmazzap commented 4 years ago

Included in 1.0.0-beta.7.

Closing. Thanks for reporting.