1 | <?php |
||
8 | class StepExecutedEvent extends Event |
||
9 | { |
||
10 | protected $step; |
||
11 | protected $result; |
||
12 | |||
13 | public function __construct(MigrationStep $step, $result) |
||
18 | |||
19 | /** |
||
20 | * @return MigrationStep |
||
21 | */ |
||
22 | public function getStep() |
||
26 | |||
27 | /** |
||
28 | * @return mixed |
||
29 | */ |
||
30 | public function getResult() |
||
34 | } |
||
35 |