Skip to content

Commit

Permalink
Merge pull request #66 from sroehrl/request-guard
Browse files Browse the repository at this point in the history
CLI patchh
  • Loading branch information
sroehrl authored Feb 11, 2023
2 parents 4d914c3 + ed05c3a commit ffc2f2c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Cli/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace Neoan\Cli;

use Neoan\Cli\Create\CreateControllerCommand;
use Neoan\Cli\Create\CreateGuardCommand;
use Neoan\Cli\Create\CreateModelCommand;
use Neoan\NeoanApp;
use Symfony\Component\Console\Application as SymfonyApplication;
Expand All @@ -18,6 +19,7 @@ function __construct(NeoanApp $app)
$this->app->add(new MigrateCommand($app));
$this->app->add(new MigrateAllCommand($app));
$this->app->add(new CreateControllerCommand($app));
$this->app->add(new CreateGuardCommand($app));
$this->app->add(new CreateModelCommand($app));
}

Expand Down

0 comments on commit ffc2f2c

Please sign in to comment.