app runners refactoring

This commit is contained in:
Yuri Kuznetsov
2020-07-15 17:33:18 +03:00
parent 32119b6afd
commit f86a493ba6
15 changed files with 76 additions and 51 deletions

View File

@@ -29,4 +29,9 @@
include "bootstrap.php";
(new \Espo\Core\Application())->run('daemon');
use Espo\Core\{
Application,
ApplicationRunners\Daemon,
};
(new Application())->run(Daemon::class);