Changeset 61457 for trunk/src/wp-includes/class-wp-hook.php
- Timestamp:
- 01/09/2026 04:26:02 AM (8 weeks ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-hook.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-hook.php
r61118 r61457 493 493 #[ReturnTypeWillChange] 494 494 public function offsetGet( $offset ) { 495 return isset( $this->callbacks[ $offset ] ) ? $this->callbacks[ $offset ] :null;495 return $this->callbacks[ $offset ] ?? null; 496 496 } 497 497
Note: See TracChangeset
for help on using the changeset viewer.