Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function __construct( |
||
18 | GridContext $gridContext, |
||
19 | string $name, |
||
20 | string $label, |
||
21 | string $template, |
||
22 | string $sortField = null |
||
23 | ) { |
||
24 | $this->name = $name; |
||
25 | $this->label = $label; |
||
26 | $this->gridContext = $gridContext; |
||
27 | $this->sortField = $sortField; |
||
28 | $this->template = $template; |
||
29 | } |
||
30 | |||
85 |