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