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