Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class TableColumnFormatter implements Formatter |
||
11 | { |
||
12 | /** |
||
13 | * @param string|null $string |
||
14 | */ |
||
15 | 6 | public function __construct( |
|
18 | } |
||
19 | |||
20 | /** |
||
21 | * Format the snake-cased attributes in readable format for the tables. |
||
22 | * |
||
23 | * @return string |
||
24 | */ |
||
25 | 6 | public function format(): string |
|
36 |