Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | final class MigrationsVersionEventArgs extends EventArgs |
||
16 | { |
||
17 | /** @var Connection */ |
||
18 | private $connection; |
||
19 | |||
20 | /** @var MigrationPlan */ |
||
21 | private $plan; |
||
22 | |||
23 | /** @var MigratorConfiguration */ |
||
24 | private $migratorConfiguration; |
||
25 | |||
26 | 11 | public function __construct( |
|
34 | 11 | } |
|
35 | |||
36 | 1 | public function getConnection() : Connection |
|
37 | { |
||
38 | 1 | return $this->connection; |
|
39 | } |
||
40 | |||
41 | 1 | public function getPlan() : MigrationPlan |
|
44 | } |
||
45 | |||
46 | 1 | public function getMigratorConfiguration() : MigratorConfiguration |
|
49 | } |
||
50 | } |
||
51 |