- Timestamp:
- 09/11/2025 02:45:56 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/wpRestUrlDetailsController.php
r56559 r60729 1197 1197 $class = new ReflectionClass( WP_REST_URL_Details_Controller::class ); 1198 1198 $method = $class->getMethod( $method_name ); 1199 $method->setAccessible( true ); 1199 if ( PHP_VERSION_ID < 80100 ) { 1200 $method->setAccessible( true ); 1201 } 1200 1202 return $method; 1201 1203 }
Note: See TracChangeset
for help on using the changeset viewer.