Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | final class DbalMigrationFactory implements MigrationFactory |
||
17 | { |
||
18 | /** @var Connection */ |
||
19 | private $connection; |
||
20 | |||
21 | /** @var LoggerInterface */ |
||
22 | private $logger; |
||
23 | |||
24 | 36 | public function __construct(Connection $connection, LoggerInterface $logger) |
|
28 | 36 | } |
|
29 | |||
30 | 1 | public function createVersion(string $migrationClassName) : AbstractMigration |
|
38 |