Skip to content

Commit

Permalink
Merge pull request #15 from KillermenBE/master
Browse files Browse the repository at this point in the history
Working for Laravel 5.4
  • Loading branch information
Mulkave committed Feb 20, 2017
2 parents 7ddb62e + 117fee8 commit e960862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vinelab/Minion/MinionServiceProvider.php
Expand Up @@ -40,7 +40,7 @@ public function register()

// add the minion class and command to the app under the vinelab namespace
$this->app->singleton('vinelab.minion', 'Vinelab\Minion\Minion');
$this->app['vinelab.minion.run'] = $this->app->share(function ($app) {
$this->app->singleton('vinelab.minion.run', function () {
$command = new RunCommand();
$command->isLaravel = true;
$command->setName('minion:run');
Expand Down

0 comments on commit e960862

Please sign in to comment.