Coding Standards: Ignore the violations of `Generic.NamingConventions.UpperCaseConstantName.ConstantNotUpperCase`.

See #45934.


Built from https://develop.svn.wordpress.org/trunk@44563


git-svn-id: http://core.svn.wordpress.org/trunk@44394 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2019-01-11 06:08:50 +00:00
parent c008959e9e
commit 3cbd512161
2 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-beta1-44562';
$wp_version = '5.1-beta1-44563';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -18,6 +18,7 @@ define( 'EZSQL_VERSION', 'WP1.25' );
* @since 0.71
*/
define( 'OBJECT', 'OBJECT' );
// phpcs:ignore Generic.NamingConventions.UpperCaseConstantName.ConstantNotUpperCase
define( 'object', 'OBJECT' ); // Back compat.
/**