Changeset 28493 for trunk/tests/phpunit/includes/functions.php
- Timestamp:
- 05/19/2014 01:16:16 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/functions.php
r28480 r28493 46 46 private $foo = 'bar'; 47 47 48 function __get( $name ) {48 public function __get( $name ) { 49 49 return $this->$name; 50 50 } 51 52 public function __call( $name, $arguments ) { 53 return call_user_func_array( array( $this, $name ), $arguments ); 54 } 55 56 private function callMe() { 57 return 'maybe'; 58 } 51 59 } 60 61 class Basic_Subclass extends Basic_Object {}
Note: See TracChangeset
for help on using the changeset viewer.