1 | <?php |
||
10 | class ClearCacheEvent extends AbstractEvent |
||
11 | { |
||
12 | |||
13 | const NAME = 'cache.clear'; |
||
14 | |||
15 | /** |
||
16 | * @var OutputInterface |
||
17 | */ |
||
18 | public $output; |
||
19 | |||
20 | /** |
||
21 | * @var Application |
||
22 | */ |
||
23 | public $application; |
||
24 | |||
25 | /** |
||
26 | * @var InputInterface |
||
27 | */ |
||
28 | public $input; |
||
29 | |||
30 | /** |
||
31 | * @param Application $application |
||
32 | * @param InputInterface $input |
||
33 | * @param OutputInterface $output |
||
34 | */ |
||
35 | public function __construct( |
||
46 | } |
||
47 |