| 1 | <?php |
||
| 11 | class ColumnFactory |
||
| 12 | { |
||
| 13 | private $registry; |
||
| 14 | |||
| 15 | public function __construct( |
||
| 21 | |||
| 22 | public function createCell(string $columnName, string $typeName, RowData $data, array $options): CellInterface |
||
| 29 | |||
| 30 | public function createHeader(GridContext $gridContext, string $columnName, string $typeName, array $options): Header |
||
| 37 | |||
| 38 | private function resolveOptions($columnName, ColumnInterface $column, array $options) |
||
| 47 | } |
||
| 48 |