We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 938244f commit 5597c59Copy full SHA for 5597c59
src/AsyncServiceProvider.php
@@ -46,8 +46,8 @@ public function register()
46
protected function registerAsyncCommand($app)
47
{
48
$app['command.queue.async'] = $app->share(function ($app) {
49
- return new AsyncCommand();
50
- });
+ return new AsyncCommand();
+ });
51
52
$this->commands('command.queue.async');
53
}
@@ -62,8 +62,8 @@ protected function registerAsyncCommand($app)
62
protected function registerAsyncConnector($manager)
63
64
$manager->addConnector('async', function () {
65
- return new AsyncConnector();
66
+ return new AsyncConnector();
67
68
69
/**
0 commit comments