| 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) |
|
| 29 | |||
| 30 | 1 | public function createVersion(string $migrationClassName) : AbstractMigration |
|
| 37 | } |
||
| 38 |