Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathphpcs.xml
More file actions
Latest commit
40 lines (33 loc) · 1.48 KB
/
Copy pathphpcs.xml
File metadata and controls
40 lines (33 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<rulesetxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
<argname="basepath"value="."/>
<argname="colors"/>
<argname="extensions"value="php"/>
<argname="tab-width"value="4"/>
<argname="cache"value="./.phpcs.cache"/>
<configname="php_version"value="80311"/>
<file>src</file>
<file>tests</file>
<ruleref="./vendor/doctrine/coding-standard/lib/Doctrine/ruleset.xml">
<excludename="SlevomatCodingStandard.Classes.SuperfluousExceptionNaming.SuperfluousSuffix"/>
<excludename="SlevomatCodingStandard.Classes.SuperfluousInterfaceNaming.SuperfluousSuffix"/>
<excludename="SlevomatCodingStandard.Classes.SuperfluousAbstractClassNaming.SuperfluousPrefix"/>
<excludename="Squiz.Arrays.ArrayDeclaration.MultiLineNotAllowed"/>
</rule>
<ruleref="Squiz.WhiteSpace.MemberVarSpacing">
<properties>
<propertyname="spacing"value="1" />
<propertyname="spacingBeforeFirst"value="0" />
</properties>
</rule>
<ruleref="Generic.Files.LineLength">
<properties>
<propertyname="lineLimit"value="160"/>
</properties>
</rule>
<ruleref="SlevomatCodingStandard.Classes.RequireMultiLineMethodSignature">
<properties>
<propertyname="minParametersCount"value="2"/>
</properties>
</rule>
</ruleset>