1 | <?php |
||
18 | class PreProcessEvent extends Event |
||
19 | { |
||
20 | /** |
||
21 | * @var ProcessorInterface Processor that starts the process |
||
22 | */ |
||
23 | protected $processor; |
||
24 | |||
25 | /** |
||
26 | * @param ProcessorInterface $processor Processor that starts the process |
||
27 | */ |
||
28 | 11 | public function __construct(ProcessorInterface $processor) |
|
32 | |||
33 | /** |
||
34 | * Returns the processor that is going to start the process. |
||
35 | * |
||
36 | * @return ProcessorInterface Processor that starts the process |
||
37 | */ |
||
38 | 1 | public function getProcessor() |
|
42 | } |
||
43 |