- Timestamp:
- 09/11/2025 02:45:56 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/interactivity-api/wpInteractivityAPI-wp-style.php
r58594 r60729 48 48 private function merge_style_property( $style_attribute_value, $style_property_name, $style_property_value ) { 49 49 $evaluate = new ReflectionMethod( $this->interactivity, 'merge_style_property' ); 50 $evaluate->setAccessible( true ); 50 if ( PHP_VERSION_ID < 80100 ) { 51 $evaluate->setAccessible( true ); 52 } 51 53 return $evaluate->invokeArgs( $this->interactivity, array( $style_attribute_value, $style_property_name, $style_property_value ) ); 52 54 }
Note: See TracChangeset
for help on using the changeset viewer.