Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | |||
22 | public function createCell(string $columnName, string $typeName, RowData $data, array $options): CellInterface |
||
23 | { |
||
24 | $column = $this->registry->get($typeName); |
||
25 | $options = $this->resolveOptions($columnName, $column, $options); |
||
26 | |||
27 | return $column->createCell($data, $options); |
||
28 | } |
||
29 | |||
30 | public function createHeader(GridContext $gridContext, string $columnName, string $typeName, array $options): Header |
||
31 | { |
||
32 | $column = $this->registry->get($typeName); |
||
48 |