1 | <?php |
||
9 | class TestObject |
||
10 | { |
||
11 | public static $called = array( |
||
12 | '__toString' => 0, |
||
13 | 'foo' => 0, |
||
14 | 'getFooBar' => 0, |
||
15 | ); |
||
16 | |||
17 | public function __construct($bar = 'bar') |
||
21 | |||
22 | public static function reset() |
||
30 | |||
31 | public function __toString() |
||
37 | |||
38 | public function foo() |
||
44 | |||
45 | public function getFooBar() |
||
51 | } |
||
52 |