Add bin/console check:config command

This commit is contained in:
Romain Neutron
2013-06-17 18:24:58 +02:00
parent 9f29b403f7
commit 5bacbaf694
4 changed files with 103 additions and 7 deletions

View File

@@ -27,6 +27,7 @@ use Alchemy\Phrasea\Command\UpgradeDBDatas;
use Alchemy\Phrasea\CLI;
use Alchemy\Phrasea\Command\Plugin\AddPlugin;
use Alchemy\Phrasea\Command\Plugin\RemovePlugin;
use Alchemy\Phrasea\Command\CheckConfig;
require_once __DIR__ . '/../lib/autoload.php';
@@ -60,6 +61,7 @@ try {
$app->command(new \module_console_aboutLicense('about:license'));
$app->command(new \module_console_checkExtension('check:extension'));
$app->command(new CheckConfig('check:config'));
$app->command(new UpgradeDBDatas('system:upgrade-datas'));