Completed
Push — master ( 2e2ab1...a4db5e )
by Jasper
05:13
created
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.
src/Parsers/MetaParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
             throw new ValidationException(sprintf('Meta MUST be an object, "%s" given.', gettype($data)));
22 22
         }
23 23
 
24
-        return new Meta((array) $data);
24
+        return new Meta((array)$data);
25 25
     }
26 26
 }
Please login to merge, or discard this patch.