Changeset 44573 for trunk/tests/phpunit/tests/functions.php
- Timestamp:
- 01/12/2019 06:05:55 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions.php
r44546 r44573 8 8 $x = new MockClass; 9 9 $x->_baba = 5; 10 $x->yZ = 'baba'; 10 $x->yZ = 'baba'; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.NotSnakeCaseMemberVar 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'; 46 $x->yZ = 'baba'; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.NotSnakeCaseMemberVar 47 47 $x->a = array( 5, 111, 'x' ); 48 48 $d = array( 'pu' => 'bu' );
Note: See TracChangeset
for help on using the changeset viewer.