Skip to content

Commit

Permalink
Added missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Dec 31, 2018
1 parent 67364ab commit 50841b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Console/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ protected function context()
{
$options = Arr::only($this->option(), ['no-interaction', 'ansi', 'no-ansi', 'quiet', 'verbose']);

collect($options)->mapWithKeys(function ($value, $key) {
return collect($options)->mapWithKeys(function ($value, $key) {
return ["--{$key}" => $value];
})->all();
}
Expand Down

0 comments on commit 50841b3

Please sign in to comment.