Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function createCell(RowData $data, array $options): CellInterface |
||
24 | { |
||
25 | // TODO: This is inefficient and will not work for proxies ... |
||
26 | $agent = $this->agentFinder->findFor(get_class($data->getObject())); |
||
27 | |||
28 | return new Cell\SelectCell($agent->getIdentifier($data->getObject())); |
||
29 | } |
||
30 | |||
40 |