Changeset 28521 for trunk/src/wp-includes/cache.php
- Timestamp:
- 05/19/2014 06:31:00 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/cache.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cache.php
r28520 r28521 269 269 * @since 2.0.0 270 270 */ 271 p ublic$cache = array();271 private $cache = array(); 272 272 273 273 /** … … 316 316 public function __get( $name ) { 317 317 return $this->$name; 318 } 319 320 /** 321 * Make private properties setable for backwards compatibility 322 * 323 * @since 4.0.0 324 * @param string $name 325 * @param string $value 326 * @return mixed 327 */ 328 public function __set( $name, $value ) { 329 return $this->$name = $value; 318 330 } 319 331
Note: See TracChangeset
for help on using the changeset viewer.