Test Failed
Push — master ( e3b5b4...43c430 )
by Kirill
04:55
created
src/Frontend/Type/BaseType.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * @param TypeInterface $type
57 57
      * @return bool
58 58
      */
59
-    public function instanceOf(TypeInterface $type): bool
59
+    public function instanceof(TypeInterface $type): bool
60 60
     {
61 61
         return $this->is($type) || $this->parent->instanceOf($type);
62 62
     }
Please login to merge, or discard this patch.
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(TypeInterface $type): bool;
32
+    public function instanceof(TypeInterface $type): bool;
33 33
 }
Please login to merge, or discard this patch.