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