Passed
Push — main ( 5eb244...3d1caa )
by Michael
02:38
created
src/Helpers/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/FormatterServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
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(
Please login to merge, or discard this patch.