-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathphpcs.xml
More file actions
15 lines (15 loc) · 684 Bytes
/
phpcs.xml
File metadata and controls
15 lines (15 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0"?>
<ruleset name="PHPStanDisallowedCallsExtension">
<arg name="extensions" value="php"/>
<arg name="cache"/>
<arg name="colors"/>
<arg value="s"/>
<arg value="p"/>
<rule ref="vendor/spaze/coding-standard/src/ruleset.xml">
<exclude name="SlevomatCodingStandard.Classes.RequireConstructorPropertyPromotion.RequiredConstructorPropertyPromotion" />
<exclude name="SlevomatCodingStandard.Functions.RequireTrailingCommaInCall" />
<exclude name="SlevomatCodingStandard.Functions.RequireTrailingCommaInDeclaration" />
<exclude name="SlevomatCodingStandard.TypeHints.ClassConstantTypeHint" />
</rule>
<exclude-pattern>tests/src/</exclude-pattern>
</ruleset>