Completed
Push — master ( 43c430...16c39a )
by Kirill
07:41 queued 04:19
created
src/Frontend/Type/TypeInterface.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,5 +29,5 @@
 block discarded – undo
29 29
      * @param TypeInterface $type
30 30
      * @return bool
31 31
      */
32
-    public function instanceOf(self $type): bool;
32
+    public function instanceof(self $type): bool;
33 33
 }
Please login to merge, or discard this patch.
src/Frontend/ValueObject/BaseStruct.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,11 +55,11 @@
 block discarded – undo
55 55
             case 'array':
56 56
                 return \json_encode($value);
57 57
             case 'object':
58
-                return \get_class($value) . '#' . \spl_object_hash($value);
58
+                return \get_class($value).'#'.\spl_object_hash($value);
59 59
             case 'NULL':
60 60
                 return 'null';
61 61
             default:
62
-                return (string)$value;
62
+                return (string) $value;
63 63
         }
64 64
     }
65 65
 
Please login to merge, or discard this patch.