mep
This commit is contained in:
parent
e958163a4a
commit
b8a5a1ff58
79 changed files with 15113 additions and 0 deletions
12
bin/doctrine.php
Executable file
12
bin/doctrine.php
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
require_once __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
$container = (require __DIR__ . '/../config/container.php')();
|
||||
|
||||
\Doctrine\ORM\Tools\Console\ConsoleRunner::run(
|
||||
new \Doctrine\ORM\Tools\Console\EntityManagerProvider\SingleManagerProvider($container->get(\Doctrine\ORM\EntityManagerInterface::class))
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue