mirror of
https://github.com/jbcr/SyliusGDPRPlugin.git
synced 2026-03-24 08:52:10 +01:00
20 lines
725 B
XML
20 lines
725 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="../vendor/squizlabs/php_codesniffer/phpcs.xsd">
|
|
<arg name="colors"/>
|
|
<arg name="extensions" value="php"/>
|
|
<rule ref="PSR12"/>
|
|
|
|
<rule ref="Generic.PHP.ForbiddenFunctions">
|
|
<properties>
|
|
<property name="forbiddenFunctions" type="array">
|
|
<element key="dd" value="null"/>
|
|
<element key="die" value="null"/>
|
|
<element key="dump" value="null"/>
|
|
<element key="print_r" value="null"/>
|
|
<element key="var_dump" value="null"/>
|
|
</property>
|
|
</properties>
|
|
</rule>
|
|
</ruleset>
|