Changeset 44645 for trunk/tests/phpunit/tests/functions.php
- Timestamp:
- 01/18/2019 02:14:24 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions.php
r44573 r44645 8 8 $x = new MockClass; 9 9 $x->_baba = 5; 10 $x->yZ = 'baba'; // phpcs:ignore WordPress.NamingConventions.ValidVariableName. NotSnakeCaseMemberVar10 $x->yZ = 'baba'; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase 11 11 $x->a = array( 5, 111, 'x' ); 12 12 $this->assertEquals( … … 44 44 $x = new MockClass; 45 45 $x->_baba = 5; 46 $x->yZ = 'baba'; // phpcs:ignore WordPress.NamingConventions.ValidVariableName. NotSnakeCaseMemberVar46 $x->yZ = 'baba'; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase 47 47 $x->a = array( 5, 111, 'x' ); 48 48 $d = array( 'pu' => 'bu' );
Note: See TracChangeset
for help on using the changeset viewer.