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