Changeset 60729 for trunk/tests/phpunit/tests/image/editor.php
- Timestamp:
- 09/11/2025 02:45:56 PM (8 months ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/image/editor.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/image/editor.php
r58049 r60729 210 210 211 211 $property = new ReflectionProperty( $editor, 'size' ); 212 $property->setAccessible( true ); 212 if ( PHP_VERSION_ID < 80100 ) { 213 $property->setAccessible( true ); 214 } 213 215 $property->setValue( 214 216 $editor, … … 256 258 ); 257 259 $property = new ReflectionProperty( $editor, 'size' ); 258 $property->setAccessible( true ); 260 if ( PHP_VERSION_ID < 80100 ) { 261 $property->setAccessible( true ); 262 } 259 263 $property->setValue( $editor, $size ); 260 264 … … 279 283 ); 280 284 $property = new ReflectionProperty( $editor, 'size' ); 281 $property->setAccessible( true ); 285 if ( PHP_VERSION_ID < 80100 ) { 286 $property->setAccessible( true ); 287 } 282 288 $property->setValue( $editor, $size ); 283 289
Note: See TracChangeset
for help on using the changeset viewer.