Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 7 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
19 | View Code Duplication | public function __construct(callable $outputFormatter, Args $args, Migrator $migrator, $migrationsPath) |
|
20 | { |
||
21 | parent::__construct($outputFormatter); |
||
22 | $this->args = $args; |
||
23 | $this->migrator = $migrator; |
||
24 | $this->migrationsPath = $migrationsPath; |
||
25 | } |
||
26 | |||
52 |