| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| 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 | { |
||
| 25 | $this->name = $name; |
||
| 26 | $this->label = $label; |
||
| 27 | $this->gridContext = $gridContext; |
||
| 28 | $this->sortField = $sortField; |
||
| 29 | $this->template = $template; |
||
| 30 | } |
||
| 31 | |||
| 86 |