Passed
Push — master ( 8ac2fa...2e2ab1 )
by Jasper
05:29
created
src/Parsers/LinksParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,9 +57,9 @@
 block discarded – undo
57 57
         }
58 58
 
59 59
         return new Links(
60
-            Collection::wrap((array) $data)
60
+            Collection::wrap((array)$data)
61 61
                 ->map(
62
-                    function ($link, $name) {
62
+                    function($link, $name) {
63 63
                         return $this->buildLink($link, $name);
64 64
                     }
65 65
                 )
Please login to merge, or discard this patch.
src/Concerns/HasType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,6 +34,6 @@
 block discarded – undo
34 34
      */
35 35
     public function hasType(): bool
36 36
     {
37
-        return (bool) $this->type;
37
+        return (bool)$this->type;
38 38
     }
39 39
 }
Please login to merge, or discard this patch.