Make WordPress Core

Changeset 44563


Ignore:
Timestamp:
01/11/2019 06:07:50 AM (6 years ago)
Author:
pento
Message:

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

See #45934.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/wp-db.php

    r44467 r44563  
    1919 */
    2020define( 'OBJECT', 'OBJECT' );
     21// phpcs:ignore Generic.NamingConventions.UpperCaseConstantName.ConstantNotUpperCase
    2122define( 'object', 'OBJECT' ); // Back compat.
    2223
  • trunk/tests/phpunit/wp-mail-real-test.php

    r42343 r44563  
    5656assert( true == is_blog_installed() );
    5757
     58// phpcs:ignore Generic.NamingConventions.UpperCaseConstantName.ConstantNotUpperCase
    5859define( 'PHPUnit_MAIN_METHOD', false );
    5960$original_wpdb = $GLOBALS['wpdb'];
Note: See TracChangeset for help on using the changeset viewer.