| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| 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 | |||
| 47 |