1 | <?php |
||
10 | class MigrationFactory implements \Doctrine\Migrations\Version\MigrationFactory |
||
11 | { |
||
12 | /** @var Connection */ |
||
13 | private $connection; |
||
14 | |||
15 | /** @var LoggerInterface */ |
||
16 | private $logger; |
||
17 | |||
18 | /** |
||
19 | * @var EntityManagerInterface |
||
20 | */ |
||
21 | private $em; |
||
22 | |||
23 | public function __construct(Connection $connection, LoggerInterface $logger, EntityManagerInterface $em) |
||
29 | |||
30 | public function createVersion(string $migrationClassName) : AbstractMigration |
||
44 | } |
||
45 |