composer update

This commit is contained in:
2019-12-01 06:37:45 +00:00
parent fa199eef05
commit 3115ab75a5
3650 changed files with 72361 additions and 147137 deletions

View File

@@ -2,10 +2,10 @@
namespace Laravel\Horizon;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Queue\QueueManager;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\ServiceProvider;
use Illuminate\Contracts\Events\Dispatcher;
use Laravel\Horizon\Connectors\RedisConnector;
class HorizonServiceProvider extends ServiceProvider
@@ -105,6 +105,10 @@ class HorizonServiceProvider extends ServiceProvider
define('HORIZON_PATH', realpath(__DIR__.'/../'));
}
$this->app->bind(Console\WorkCommand::class, function ($app) {
return new Console\WorkCommand($app['queue.worker'], $app['cache.store']);
});
$this->configure();
$this->offerPublishing();
$this->registerServices();