1 | <?php |
||
8 | class To |
||
9 | { |
||
10 | /** |
||
11 | * @var \Clarkeash\Converter\Convert |
||
12 | */ |
||
13 | private $convert; |
||
14 | |||
15 | /** |
||
16 | * @var \Clarkeash\Converter\Contracts\Metric |
||
17 | */ |
||
18 | private $metric; |
||
19 | |||
20 | 3 | public function __construct(Convert $convert, Metric $metric) |
|
25 | |||
26 | /** |
||
27 | * @return $this |
||
28 | */ |
||
29 | 2 | public function to() |
|
33 | |||
34 | 2 | public function __call($method, $args) |
|
44 | } |
||
45 |