Changeset 29145 for trunk/src/wp-includes/class-wp-ajax-response.php
- Timestamp:
- 07/13/2014 11:43:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-ajax-response.php
r28524 r29145 31 31 32 32 /** 33 * Make private properties readable for backwards compatibility 33 * Make private properties readable for backwards compatibility. 34 34 * 35 35 * @since 4.0.0 36 * @param string $name 37 * @return mixed 36 * @access public 37 * 38 * @param string $name Property to get. 39 * @return mixed Property. 38 40 */ 39 41 public function __get( $name ) { … … 42 44 43 45 /** 44 * Make private properties setable for backwards compatibility 46 * Make private properties setable for backwards compatibility. 45 47 * 46 48 * @since 4.0.0 47 * @param string $name 48 * @param string $value 49 * @return mixed 49 * @access public 50 * 51 * @param string $name Property to set. 52 * @param mixed $value Property value. 53 * @return mixed Newly-set property. 50 54 */ 51 55 public function __set( $name, $value ) { … … 54 58 55 59 /** 56 * Make private properties checkable for backwards compatibility 60 * Make private properties checkable for backwards compatibility. 57 61 * 58 62 * @since 4.0.0 59 * @param string $name 60 * @return mixed 63 * @access public 64 * 65 * @param string $name Property to check if set. 66 * @return bool Whether the property is set. 61 67 */ 62 68 public function __isset( $name ) { … … 65 71 66 72 /** 67 * Make private properties unsetable for backwards compatibility 73 * Make private properties unsetable for backwards compatibility. 68 74 * 69 75 * @since 4.0.0 70 * @param string $name 71 * @return mixed 76 * @access public 77 * 78 * @param string $name Property to unset. 72 79 */ 73 80 public function __unset( $name ) {
Note: See TracChangeset
for help on using the changeset viewer.