Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
21 | class SplitCamelCaseWordsFormatter implements FormatterInterface |
||
22 | { |
||
23 | /** @var FormatterInterface */ |
||
24 | protected $formatter; |
||
25 | |||
26 | /** |
||
27 | * SplitCamelCaseWordsFormatter constructor. |
||
28 | */ |
||
29 | public function __construct() |
||
37 | 3 | } |
|
38 | |||
39 | /** |
||
40 | * @param array $data |
||
41 | * |
||
42 | * @return array |
||
43 | */ |
||
44 | 2 | public function format(array $data): array |
|
49 |