Skip to content

Commit

Permalink
Remove void return
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-ivanov committed Sep 12, 2019
1 parent 67554ce commit 8c3017c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/artisan.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
if (!function_exists('call_in_background')) {
function call_in_background($command, $before = null, $after = null)
{
return Command::factory($command, $before, $after)->runInBackground();
Command::factory($command, $before, $after)->runInBackground();
}
}

0 comments on commit 8c3017c

Please sign in to comment.