Use class names for service names

This commit is contained in:
Oliver Davies 2019-04-18 21:27:51 +01:00
parent 0779825f80
commit 685fbe5188
4 changed files with 6 additions and 9 deletions

View file

@ -13,6 +13,6 @@ if (file_exists(__DIR__.'/../vendor/autoload.php')) {
$container = new Container();
/** @var Application $application */
$application = $container->get('app.cli');
$application = $container->get(Application::class);
$application->setDefaultCommand(GenerateCommand::NAME);
$application->run();