# authorizer/2.8.3/phpcs.xml

Authorizer, version 2.8.3. 31 lines.

- Page: https://pluginprobe.com/plugins/authorizer/2.8.3/code/phpcs.xml
- Raw: https://pluginprobe.com/plugins/authorizer/2.8.3/raw/phpcs.xml
- Modified: 2018-06-30T00:59:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/authorizer/2.8.3/code/phpcs.xml#L10-L20`.

```xml
<?xml version="1.0"?>
<ruleset name="DCDC_WordPress">
	<description>WordPress Coding Standards</description>

	<!-- Use WordPress as a base -->
	<rule ref="WordPress">
		<!-- Allow: while ( have_posts() ) : the_post(); -->
		<exclude name="Squiz.ControlStructures.ControlSignature.NewlineAfterOpenBrace"/>

		<!-- Disable overly picky rules -->
		<exclude name="WordPress.WP.CapitalPDangit"/>
		<exclude name="WordPress.VIP.SlowDBQuery" />
		<exclude name="WordPress.VIP.RestrictedFunctions" />
		<exclude name="WordPress.VIP.RestrictedVariables"/>
		<exclude name="WordPress.VIP.SessionVariableUsage"/>
		<exclude name="WordPress.VIP.SessionFunctionsUsage"/>
		<exclude name="WordPress.VIP.FileSystemWritesDisallow"/>
		<exclude name="WordPress.VIP.DirectDatabaseQuery"/>
		<exclude name="WordPress.VIP.SuperGlobalInputUsage.AccessDetected"/>
		<exclude name="WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize"/>
		<exclude name="WordPress.PHP.DiscouragedPHPFunctions.serialize_unserialize"/>
	</rule>

	<!-- Add custom sanitizing function(s). -->
	<rule ref="WordPress.VIP.ValidatedSanitizedInput">
		<properties>
			<property name="customSanitizingFunctions" value="sanitize_update_auth_users" type="array" />
		</properties>
	</rule>
</ruleset>

```
