| 1 | <?php |
||
| 16 | class ConfigurationEvent extends Event |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var ConfigurationInterface |
||
| 20 | */ |
||
| 21 | protected $configuration; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var OptionsResolver |
||
| 25 | */ |
||
| 26 | protected $optionsResolver; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Constructor |
||
| 30 | * |
||
| 31 | * @param ConfigurationInterface $configuration |
||
| 32 | * @param OptionsResolver $optionsResolver |
||
| 33 | */ |
||
| 34 | public function __construct(ConfigurationInterface $configuration, OptionsResolver $optionsResolver) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Returns the configuration |
||
| 42 | * |
||
| 43 | * @return ConfigurationInterface |
||
| 44 | */ |
||
| 45 | public function getConfiguration() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Returns the options resolver |
||
| 52 | * |
||
| 53 | * @return OptionsResolver |
||
| 54 | */ |
||
| 55 | public function getOptionsResolver() |
||
| 59 | } |
||
| 60 |