# authorizer/3.9.0/phpcs.xml

Authorizer, version 3.9.0. 32 lines.

- Page: https://pluginprobe.com/plugins/authorizer/3.9.0/code/phpcs.xml
- Raw: https://pluginprobe.com/plugins/authorizer/3.9.0/raw/phpcs.xml
- Modified: 2022-03-02T23:54:06+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/3.9.0/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.PHP.DiscouragedPHPFunctions.serialize_serialize"/>
		<exclude name="WordPress.PHP.DiscouragedPHPFunctions.serialize_unserialize"/>

		<!-- Allow function( 'something', array(
			'something',
		) ); -->
		<exclude name="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket"/>
		<exclude name="PEAR.Functions.FunctionCallSignature.CloseBracketLine"/>
		<exclude name="PEAR.Functions.FunctionCallSignature.MultipleArguments"/>
	</rule>

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

```
