Skip to content

Commit 78fde76

Browse files
committed
Fixed deprecated notation for PHPCS
1 parent 800c0b3 commit 78fde76

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

phpcs.xml.dist

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515

1616
<rule ref="Generic.PHP.ForbiddenFunctions">
1717
<properties>
18-
<property name="forbiddenFunctions" type="array" value="dump=>null,var_dump=>null,die=>null"/>
18+
<property name="forbiddenFunctions" type="array">
19+
<element key="dump" value="null"/>
20+
<element key="var_dump" value="null"/>
21+
<element key="die" value="null"/>
22+
</property>
1923
</properties>
2024
</rule>
2125

0 commit comments

Comments
 (0)