1 | <?php |
||
7 | final class MethodAccessor implements AccessorInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $method; |
||
13 | |||
14 | /** |
||
15 | * @param string $method |
||
16 | */ |
||
17 | 1 | public function __construct($method) |
|
21 | |||
22 | /** |
||
23 | * @param object $object |
||
24 | * |
||
25 | * @return mixed |
||
26 | */ |
||
27 | 1 | public function getValue($object) |
|
33 | } |
||
34 |