Skip to content
This repository was archived by the owner on Sep 22, 2024. It is now read-only.

Commit 3706bf8

Browse files
committed
Add commands to ServiceProvider
1 parent 802a1a7 commit 3706bf8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/DomainServiceProvider.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
namespace Signifly\Console;
44

55
use Illuminate\Support\ServiceProvider;
6+
use Signifly\Console\Commands\DTOCommand;
7+
use Signifly\Console\Commands\EnumCommand;
8+
use Signifly\Console\Commands\EventCommand;
9+
use Signifly\Console\Commands\ModelCommand;
10+
use Signifly\Console\Commands\ActionCommand;
611

712
class DomainServiceProvider extends ServiceProvider
813
{
@@ -14,6 +19,11 @@ public function boot()
1419
], 'domain-commands-config');
1520

1621
$this->commands([
22+
ActionCommand::class,
23+
DTOCommand::class,
24+
EnumCommand::class,
25+
EventCommand::class,
26+
ModelCommand::class,
1727
]);
1828
}
1929

0 commit comments

Comments
 (0)