Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Oct 10, 2018
1 parent 1cdbad1 commit 9c661aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Components/Logo/FigletString.php
Expand Up @@ -13,6 +13,7 @@

namespace LaravelZero\Framework\Components\Logo;

use InvalidArgumentException;
use Zend\Text\Figlet\Figlet as ZendFiglet;

/**
Expand Down Expand Up @@ -77,7 +78,7 @@ private function justification(?string $justification)
// Let ZendFiglet handle the justification
break;
default:
throw new \InvalidArgumentException('Invalid value given for the `logo.justification` option');
throw new InvalidArgumentException('Invalid value given for the `logo.justification` option');
}

return $this;
Expand Down

0 comments on commit 9c661aa

Please sign in to comment.