Passed
Push — master ( a7279d...feb425 )
by Andrey
11:45
created
src/Entities/Result.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $item = Arr::first($this->items);
58 58
         $keys = Arr::keys($item);
59 59
 
60
-        return Arr::transform($keys, function ($value) {
60
+        return Arr::transform($keys, function($value) {
61 61
             return Str::title($value);
62 62
         });
63 63
     }
Please login to merge, or discard this patch.
src/Services/Localization.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
      */
63 63
     protected function makeProcess(string $classname): Process
64 64
     {
65
-        if (! is_subclass_of($classname, Process::class)) {
65
+        if ( ! is_subclass_of($classname, Process::class)) {
66 66
             throw new NoProcessInstanceException($classname);
67 67
         }
68 68
 
Please login to merge, or discard this patch.