PluginProbe
Authorizer / 3.5.0
Authorizer v3.5.0
3.15.3 3.15.2 3.15.1 3.15.0 3.14.3 3.14.4 3.14.2 3.14.1 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.13 2.9.2 2.9.3 2.9.6 All 126 releases
← All changes | phpcs.xml +10 -1 2.9.33.5.0 View file →
@@ -10,13 +10,22 @@
10 10 <!-- Disable overly picky rules -->
11 11 <exclude name="WordPress.WP.CapitalPDangit"/>
12 12 <exclude name="WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize"/>
13 13 <exclude name="WordPress.PHP.DiscouragedPHPFunctions.serialize_unserialize"/>
14 +
15 + <!-- Allow function( 'something', array(
16 + 'something',
17 + ) ); -->
18 + <exclude name="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket"/>
19 + <exclude name="PEAR.Functions.FunctionCallSignature.CloseBracketLine"/>
20 + <exclude name="PEAR.Functions.FunctionCallSignature.MultipleArguments"/>
14 21 </rule>
15 22
16 23 <!-- Add custom sanitizing function(s). -->
17 24 <rule ref="WordPress.Security.ValidatedSanitizedInput">
18 25 <properties>
19 - <property name="customSanitizingFunctions" value="sanitize_update_auth_users" type="array" />
26 + <property name="customSanitizingFunctions" type="array">
27 + <element value="sanitize_update_auth_users" />
28 + </property>
20 29 </properties>
21 30 </rule>
22 31 </ruleset>