mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
Fix neutron comments
This commit is contained in:
@@ -41,6 +41,13 @@ use Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand;
|
||||
use Doctrine\ORM\Tools\Console\Command\ConvertMappingCommand;
|
||||
use Doctrine\ORM\Tools\Console\Command\RunDqlCommand;
|
||||
use Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand;
|
||||
// Migration Commands
|
||||
use Doctrine\DBAL\Migrations\Tools\Console\Command\DiffCommand;
|
||||
use Doctrine\DBAL\Migrations\Tools\Console\Command\ExecuteCommand;
|
||||
use\Doctrine\DBAL\Migrations\Tools\Console\Command\GenerateCommand;
|
||||
use Doctrine\DBAL\Migrations\Tools\Console\Command\MigrateCommand;
|
||||
use Doctrine\DBAL\Migrations\Tools\Console\Command\StatusCommand;
|
||||
use Doctrine\DBAL\Migrations\Tools\Console\Command\VersionCommand;
|
||||
|
||||
require_once __DIR__ . '/../lib/autoload.php';
|
||||
|
||||
@@ -99,6 +106,13 @@ $cli['console']->addCommands([
|
||||
new ConvertMappingCommand(),
|
||||
new RunDqlCommand(),
|
||||
new ValidateSchemaCommand(),
|
||||
// Migrations Commands
|
||||
new DiffCommand(),
|
||||
new ExecuteCommand(),
|
||||
new GenerateCommand(),
|
||||
new MigrateCommand(),
|
||||
new StatusCommand(),
|
||||
new VersionCommand(),
|
||||
]);
|
||||
|
||||
exit($cli->runCLI());
|
||||
|
Reference in New Issue
Block a user