@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | use MichaelRubel\Formatters\Formatter; |
7 | 7 | use MichaelRubel\Formatters\FormatterServiceProvider; |
8 | 8 | |
9 | -if (! function_exists('format')) { |
|
9 | +if (!function_exists('format')) { |
|
10 | 10 | /** |
11 | 11 | * @param string $formatter |
12 | 12 | * @param string|array $items |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | ? app($formatter) |
21 | 21 | : app($formatter . FormatterServiceProvider::FORMATTER_POSTFIX); |
22 | 22 | |
23 | - if (! $formatter instanceof Formatter) { |
|
23 | + if (!$formatter instanceof Formatter) { |
|
24 | 24 | throw new ShouldImplementInterfaceException(); |
25 | 25 | } |
26 | 26 |
@@ -58,7 +58,7 @@ |
||
58 | 58 | |
59 | 59 | $appFormatters |
60 | 60 | ->union($packageFormatters) |
61 | - ->each(function ($file) use ($app_folder) { |
|
61 | + ->each(function($file) use ($app_folder) { |
|
62 | 62 | $filename = $file->getFilenameWithoutExtension(); |
63 | 63 | |
64 | 64 | $class = $this->getFormatterClass( |