This commit is contained in:
Yuri Kuznetsov
2021-08-16 15:59:25 +03:00
parent 139dfc5b81
commit d058bb7c3b
2 changed files with 4 additions and 8 deletions
@@ -29,10 +29,8 @@
namespace Espo\Core\ApplicationRunners; namespace Espo\Core\ApplicationRunners;
use Espo\Core\{ use Espo\Core\Application\Runner;
Application\Runner, use Espo\Core\Console\CommandManager as ConsoleCommandManager;
Console\CommandManager as ConsoleCommandManager,
};
use Exception; use Exception;
+2 -4
View File
@@ -29,9 +29,7 @@
include "bootstrap.php"; include "bootstrap.php";
use Espo\Core\{ use Espo\Core\Application;
Application, use Espo\Core\ApplicationRunners\Command;
ApplicationRunners\Command,
};
(new Application())->run(Command::class); (new Application())->run(Command::class);