Changeset 29139
- Timestamp:
- 07/13/2014 11:31:55 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-diff.php
r28525 r29139 432 432 433 433 /** 434 * Make private properties readable for backwards compatibility 434 * Make private properties readable for backwards compatibility. 435 435 * 436 436 * @since 4.0.0 437 * @param string $name 438 * @return mixed 437 * @access public 438 * 439 * @param string $name Property to get. 440 * @return mixed Property. 439 441 */ 440 442 public function __get( $name ) { … … 443 445 444 446 /** 445 * Make private properties setable for backwards compatibility 447 * Make private properties setable for backwards compatibility. 446 448 * 447 449 * @since 4.0.0 448 * @param string $name 449 * @param string $value 450 * @return mixed 450 * @access public 451 * 452 * @param string $name Property to check if set. 453 * @param mixed $value Property value. 454 * @return mixed Newly-set property. 451 455 */ 452 456 public function __set( $name, $value ) { … … 455 459 456 460 /** 457 * Make private properties checkable for backwards compatibility 461 * Make private properties checkable for backwards compatibility. 458 462 * 459 463 * @since 4.0.0 460 * @param string $name 461 * @return mixed 464 * @access public 465 * 466 * @param string $name Property to check if set. 467 * @return bool Whether the property is set. 462 468 */ 463 469 public function __isset( $name ) { … … 466 472 467 473 /** 468 * Make private properties unsetable for backwards compatibility 474 * Make private properties unsetable for backwards compatibility. 469 475 * 470 476 * @since 4.0.0 471 * @param string $name 472 * @return mixed 477 * @access public 478 * 479 * @param string $name Property to unset. 473 480 */ 474 481 public function __unset( $name ) { … … 477 484 478 485 /** 479 * Make private/protected methods readable for backwards compatibility 486 * Make private/protected methods readable for backwards compatibility. 480 487 * 481 488 * @since 4.0.0 482 * @param string $name 483 * @param array $arguments 484 * @return mixed 489 * @access public 490 * 491 * @param callable $name Method to call. 492 * @param array $arguments Arguments to pass when calling. 493 * @return mixed|bool Return value of the callback, false otherwise. 485 494 */ 486 495 public function __call( $name, $arguments ) {
Note: See TracChangeset
for help on using the changeset viewer.