+ <!-- "A file should declare new symbols (classes, functions, constants, etc.) and cause no
+ other side effects, or it should execute logic with side effects, but should not do both."
+ ... we have too many script and includes to be able to enforce that.
+ -->
+ <rule ref="PSR1.Files.SideEffects.FoundWithSymbols">
+ <severity>0</severity>
+ </rule>
+
+
+
+ <!-- eval, system, etc -->
+ <rule ref="Generic.PHP.ForbiddenFunctions">
+ <properties>
+ <property name="forbiddenFunctions" type="array" value="sizeof=>count,delete=>unset,print=>echo,create_function=>null,eval=>null"/>
+ </properties>
+ </rule>