Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
16 | class Callback implements ValueFormatter |
||
17 | { |
||
18 | /** |
||
19 | * @var callable |
||
20 | */ |
||
21 | private $callable; |
||
22 | |||
23 | /** |
||
24 | * @param callable $callable |
||
25 | */ |
||
26 | public function __construct(callable $callable) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param mixed $value |
||
33 | * @return mixed |
||
34 | */ |
||
35 | public function format($value) |
||
46 |