@@ -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 | |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | |
| 54 | 54 | $appFormatters |
| 55 | 55 | ->union($packageFormatters) |
| 56 | - ->each(function ($file) { |
|
| 56 | + ->each(function($file) { |
|
| 57 | 57 | $filename = $file->getFilenameWithoutExtension(); |
| 58 | 58 | |
| 59 | 59 | $class = sprintf( |