1 | <?php |
||
15 | class ConfigureActionEvent extends ActionEvent |
||
16 | { |
||
17 | /** |
||
18 | * @var OptionsResolver |
||
19 | */ |
||
20 | protected $optionsResolver; |
||
21 | |||
22 | /** |
||
23 | * @param ActionInterface $action |
||
24 | * @param OptionsResolver $optionsResolver |
||
25 | */ |
||
26 | public function __construct(ActionInterface $action, OptionsResolver $optionsResolver) |
||
31 | |||
32 | /** |
||
33 | * Returns the options resolver for the action |
||
34 | * |
||
35 | * @return OptionsResolver |
||
36 | */ |
||
37 | public function getOptionsResolver() |
||
41 | } |
||
42 |