Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class HigherOrderMessage |
||
20 | { |
||
21 | protected $underscore; |
||
22 | protected $method; |
||
23 | |||
24 | public function __construct(UnderscoreBase $underscore, $method) |
||
25 | { |
||
26 | $this->underscore = $underscore; |
||
27 | $this->method = $method; |
||
28 | } |
||
29 | |||
30 | public function __call($method, $args) |
||
34 | }); |
||
35 | } |
||
36 | |||
37 | public function __get($prop) |
||
43 | }); |
||
44 | } |
||
46 |