1
0
Fork 0
mirror of synced 2024-05-17 11:12:41 +12:00

add rule to exclude namespace

This commit is contained in:
Everly Precia Suresh 2022-06-02 14:20:15 +00:00
parent da03611109
commit 5a8bbf6457

View file

@ -15,8 +15,8 @@
<rule ref="PSR1.Files.SideEffects.FoundWithSymbols">
<exclude-pattern>*</exclude-pattern>
</rule>
<!-- Exclude namespace check for app/workers directory -->
<!-- Exclude namespace check for ./app directory -->
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>./app/workers</exclude-pattern>
<exclude-pattern>./app</exclude-pattern>
</rule>
</ruleset>