Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
🐛 actually publish the command because that's not as easy as I though…
Browse files Browse the repository at this point in the history
…t it would be
  • Loading branch information
jeyemwey committed Sep 19, 2022
1 parent edd1aa8 commit 963f5d2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Providers/QueueMonitorProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use Illuminate\Queue\QueueManager;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\ServiceProvider;
use Traewelling\QueueMonitor\Console\Commands\CleanUpOldMonitors;
use Traewelling\QueueMonitor\Models\Monitor;
use Traewelling\QueueMonitor\Routes\QueueMonitorRoutes;
use Traewelling\QueueMonitor\Services\QueueMonitor;
Expand All @@ -29,6 +30,10 @@ public function boot()
);
}

$this->commands([
CleanUpOldMonitors::class,
]);

$this->publishes([
__DIR__ . '/../../config/queue-monitor.php' => config_path('queue-monitor.php'),
], 'config');
Expand Down

0 comments on commit 963f5d2

Please sign in to comment.