Changeset 29150
- Timestamp:
- 07/13/2014 11:58:27 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-header.php
r28524 r29150 85 85 * 86 86 * @since 4.0.0 87 * @param string $name 88 * @return mixed 87 * @access public 88 * 89 * @param string $name Property to get. 90 * @return mixed Property. 89 91 */ 90 92 public function __get( $name ) { … … 96 98 * 97 99 * @since 4.0.0 98 * @param string $name 99 * @param string $value 100 * @return mixed 100 * @access public 101 * 102 * @param string $name Property to set. 103 * @param mixed $value Property value. 104 * @return mixed Newly-set property. 101 105 */ 102 106 public function __set( $name, $value ) { … … 108 112 * 109 113 * @since 4.0.0 110 * @param string $name 111 * @return mixed 114 * @access public 115 * 116 * @param string $name Property to check if set. 117 * @return bool Whether the property is set. 112 118 */ 113 119 public function __isset( $name ) { … … 119 125 * 120 126 * @since 4.0.0 121 * @param string $name 122 * @return mixed 127 * @access public 128 * 129 * @param string $name Property to unset. 123 130 */ 124 131 public function __unset( $name ) {
Note: See TracChangeset
for help on using the changeset viewer.