Changeset 29146
- Timestamp:
- 07/13/2014 11:45:11 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cache.php
r28524 r29146 311 311 * 312 312 * @since 4.0.0 313 * @param string $name 314 * @return mixed 313 * @access public 314 * 315 * @param string $name Property to get. 316 * @return mixed Property. 315 317 */ 316 318 public function __get( $name ) { … … 322 324 * 323 325 * @since 4.0.0 324 * @param string $name 325 * @param string $value 326 * @return mixed 326 * @access public 327 * 328 * @param string $name Property to set. 329 * @param mixed $value Property value. 330 * @return mixed Newly-set property. 327 331 */ 328 332 public function __set( $name, $value ) { … … 334 338 * 335 339 * @since 4.0.0 336 * @param string $name 337 * @return mixed 340 * @access public 341 * 342 * @param string $name Property to check if set. 343 * @return bool Whether the property is set. 338 344 */ 339 345 public function __isset( $name ) { … … 345 351 * 346 352 * @since 4.0.0 347 * @param string $name 348 * @return mixed 353 * @access public 354 * 355 * @param string $name Property to unset. 349 356 */ 350 357 public function __unset( $name ) {
Note: See TracChangeset
for help on using the changeset viewer.