Skip to content

Commit

Permalink
Merge branch 'type-error' into symfony-4
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Dec 16, 2017
2 parents 2ed9209 + 2748476 commit 2a592e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Console/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,6 @@ protected static function extractDescription($token)
{
$parts = preg_split('/\s+:\s+/', trim($token), 2);

return count($parts) === 2 ? $parts : [$token, null];
return count($parts) === 2 ? $parts : [$token, ''];
}
}

0 comments on commit 2a592e1

Please sign in to comment.