Skip to content

Commit 296be3f

Browse files
committed
Register LinkCommand and UnlinkCommand in KibbleServiceProvider
1 parent dd9b7ee commit 296be3f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/kibble/src/Providers/KibbleServiceProvider.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
use ArtisanBuild\Kibble\Commands\CreatePackageCommand;
66
use ArtisanBuild\Kibble\Commands\ImportPackageCommand;
7+
use ArtisanBuild\Kibble\Commands\LinkCommand;
78
use ArtisanBuild\Kibble\Commands\SplitPackagesCommand;
9+
use ArtisanBuild\Kibble\Commands\UnlinkCommand;
810
use Illuminate\Support\ServiceProvider;
911

1012
class KibbleServiceProvider extends ServiceProvider
@@ -21,7 +23,10 @@ public function boot(): void
2123
CreatePackageCommand::class,
2224
ImportPackageCommand::class,
2325
SplitPackagesCommand::class,
26+
LinkCommand::class,
27+
UnlinkCommand::class,
2428
]);
29+
2530
$this->publishes([
2631
__DIR__.'/../../config/kibble.php' => config_path('kibble.php'),
2732
], 'kibble');

0 commit comments

Comments
 (0)