Changeset 29147
- Timestamp:
- 07/13/2014 11:51:39 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r28904 r29147 41 41 42 42 /** 43 * Make private properties readable for backwards compatibility 43 * Make private properties readable for backwards compatibility. 44 44 * 45 45 * @since 4.0.0 46 * @access public 47 * 46 48 * @param string $name 47 49 * @return mixed … … 52 54 53 55 /** 54 * Make private properties setable for backwards compatibility 56 * Make private properties setable for backwards compatibility. 55 57 * 56 58 * @since 4.0.0 57 * @param string $name 58 * @param string $value 59 * @return mixed 59 * @access public 60 * 61 * @param string $name Property to set. 62 * @param mixed $value Property value. 63 * @return mixed Newly-set property. 60 64 */ 61 65 public function __set( $name, $value ) { … … 64 68 65 69 /** 66 * Make private properties checkable for backwards compatibility 70 * Make private properties checkable for backwards compatibility. 67 71 * 68 72 * @since 4.0.0 69 * @param string $name 70 * @return mixed 73 * @access public 74 * 75 * @param string $name Property to check if set. 76 * @return bool Whether the property is set. 71 77 */ 72 78 public function __isset( $name ) { … … 78 84 * 79 85 * @since 4.0.0 80 * @param string $name 81 * @return mixed 86 * @access public 87 * 88 * @param string $name Property to unset. 82 89 */ 83 90 public function __unset( $name ) {
Note: See TracChangeset
for help on using the changeset viewer.