Skip to content

Commit

Permalink
[Jobs] Install command registered
Browse files Browse the repository at this point in the history
  • Loading branch information
mooxbot committed Dec 18, 2023
1 parent 288b2d9 commit 0297518
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/JobsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Moox\Jobs;

use Moox\Jobs\Commands\InstallCommand;
use Spatie\LaravelPackageTools\Package;
use Spatie\LaravelPackageTools\PackageServiceProvider;

Expand All @@ -12,6 +13,7 @@ public function configurePackage(Package $package): void
$package->name('jobs')
->hasConfigFile()
->hasTranslations()
->hasMigration('create_job_manager_table');
->hasMigration('create_job_manager_table')
->hasCommand(InstallCommand::class);
}
}

0 comments on commit 0297518

Please sign in to comment.