Test Failed
Push — master ( e04cac...591538 )
by Kirill
03:14
created
src/Invocation/DirectiveInvocation.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 __toString(): string
36 36
     {
37
-        return '@' . parent::__toString();
37
+        return '@'.parent::__toString();
38 38
     }
39 39
 }
Please login to merge, or discard this patch.
src/Definition/Behaviour/HasInheritance.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     abstract protected function fetch($type): TypeDefinition;
30 30
 
31 31
     /**
32
-     * @return iterable|TypeDefinition[]
32
+     * @return \Generator
33 33
      */
34 34
     public function getParents(): iterable
35 35
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     }
73 73
 
74 74
     /**
75
-     * @param string|TypeDefinition $type
75
+     * @param TypeDefinition $type
76 76
      * @return bool
77 77
      */
78 78
     public function isExtends($type): bool
Please login to merge, or discard this patch.
src/Definition/Behaviour/HasInterfaces.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     abstract protected function fetch($type): TypeDefinition;
31 31
 
32 32
     /**
33
-     * @param string|TypeDefinition $interface
33
+     * @param TypeDefinition $interface
34 34
      * @return bool
35 35
      */
36 36
     public function isImplements($interface): bool
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @return iterable|InterfaceDefinition[]
50
+     * @return \Generator
51 51
      */
52 52
     public function getInterfaces(): iterable
53 53
     {
Please login to merge, or discard this patch.