1 | <?php |
||
12 | class SelectColumn implements ColumnInterface |
||
13 | { |
||
14 | const INPUT_NAME = '_select'; |
||
15 | |||
16 | private $agentFinder; |
||
17 | |||
18 | public function __construct(AgentFinder $agentFinder) |
||
22 | |||
23 | public function buildCell(Cell $cell, array $options) |
||
32 | |||
33 | public function configureOptions(OptionsResolver $options) |
||
37 | |||
38 | public function getParent() |
||
41 | } |
||
42 |