Changeset 28523 for trunk/tests/phpunit/includes/functions.php
- Timestamp:
- 05/19/2014 06:48:56 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/functions.php
r28493 r28523 50 50 } 51 51 52 public function __set( $name, $value ) { 53 return $this->$name = $value; 54 } 55 56 public function __isset( $name ) { 57 return isset( $this->$name ); 58 } 59 60 public function __unset( $name ) { 61 unset( $this->$name ); 62 } 63 52 64 public function __call( $name, $arguments ) { 53 65 return call_user_func_array( array( $this, $name ), $arguments );
Note: See TracChangeset
for help on using the changeset viewer.