Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ColumnHead |
||
12 | { |
||
13 | use Configurable, Attributable; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $label; |
||
19 | |||
20 | /** |
||
21 | * ColumnHead constructor. |
||
22 | * @param array $config |
||
23 | */ |
||
24 | public function __construct(array $config) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Get label for detail head. |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getLabel(): string |
||
38 |