Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
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 | |||
48 |