-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
25 lines (25 loc) · 943 Bytes
/
Copy pathphpcs.xml
File metadata and controls
25 lines (25 loc) · 943 Bytes
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
<?xml version="1.0"?>
<ruleset name="PSR2R">
<description>PSR-2</description>
<rule ref="PSR2">
<exclude name="Generic.PHP.DisallowShortOpenTag"/>
<exclude name="Generic.Files.LineEndings"/>
<exclude name="Generic.Files.LineLength"/>
<exclude name="PSR2.Classes.PropertyDeclaration.Underscore"/>
</rule>
<rule ref="Internal.NoCodeFound">
<severity>0</severity>
</rule>
<rule ref="Generic.PHP.ForbiddenFunctions">
<properties>
<property name="forbiddenFunctions" type="array">
<element key="var_dump">null</element>
<element key="d">null</element>
<element key="dd">null</element>
<element key="eval">null</element>
<element key="print_r">null</element>
<element key="var_export">null</element>
</property>
</properties>
</rule>
</ruleset>