Changeset 28524 for trunk/src/wp-includes/cache.php
- Timestamp:
- 05/19/2014 06:51:35 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cache.php
r28521 r28524 328 328 public function __set( $name, $value ) { 329 329 return $this->$name = $value; 330 } 331 332 /** 333 * Make private properties checkable for backwards compatibility 334 * 335 * @since 4.0.0 336 * @param string $name 337 * @return mixed 338 */ 339 public function __isset( $name ) { 340 return isset( $this->$name ); 341 } 342 343 /** 344 * Make private properties unsetable for backwards compatibility 345 * 346 * @since 4.0.0 347 * @param string $name 348 * @return mixed 349 */ 350 public function __unset( $name ) { 351 unset( $this->$name ); 330 352 } 331 353
Note: See TracChangeset
for help on using the changeset viewer.