- Timestamp:
- 10/27/2025 11:55:51 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/abilities-api/class-wp-ability-categories-registry.php
r61032 r61071 206 206 __METHOD__, 207 207 sprintf( 208 __( 'Ability API should not be initialized before the <code>init</code> action has fired' ) 208 // translators: %s: init action. 209 __( 'Ability API should not be initialized before the %s action has fired.' ), 210 '<code>init</code>' 209 211 ), 210 212 '6.9.0' … … 250 252 */ 251 253 public function __sleep(): array { 252 throw new LogicException( __CLASS__ . ' should never be serialized ' );254 throw new LogicException( __CLASS__ . ' should never be serialized.' ); 253 255 } 254 256 }
Note: See TracChangeset
for help on using the changeset viewer.