Test Failed
Push — master ( b8c007...0971b0 )
by Kirill
02:18
created
src/Stdlib/Directive/DeprecatedDirective.php 2 patches
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     private const LOCATIONS = [
26 26
         DirectiveLocation::OBJECT,
27
-        DirectiveLocation::INTERFACE,
27
+        DirectiveLocation::interface,
28 28
         DirectiveLocation::FIELD_DEFINITION,
29 29
         DirectiveLocation::SCALAR,
30 30
         DirectiveLocation::UNION,
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 The @deprecated directive is used within the type system definition language to
48 48
 indicate deprecated portions of a GraphQL service’s schema, such as deprecated
49 49
 fields on a type or deprecated enum values.
50
-Description;
50
+description;
51 51
 
52 52
     /**
53 53
      * BooleanScalar constructor.
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
             ->withArgument((new ArgumentDefinition($this, 'reason', 'String'))
63 63
                 ->withLine(39)
64 64
                 ->withDefaultValue('No longer supported'))
65
-            ->withLocation(...\array_map(function (string $location) use ($document): DirectiveLocation {
65
+            ->withLocation(...\array_map(function(string $location) use ($document): DirectiveLocation {
66 66
                 return new DirectiveLocation($this, $location);
67 67
             }, self::LOCATIONS));
68 68
     }
Please login to merge, or discard this patch.
src/Stdlib/Directive/IncludeDirective.php 2 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 The @include directive may be provided for fields, fragment spreads, and inline
41 41
 fragments, and allows for conditional inclusion during execution as described
42 42
 by the if argument.
43
-Description;
43
+description;
44 44
 
45 45
     /**
46 46
      * BooleanScalar constructor.
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             ->withArgument((new ArgumentDefinition($this, 'if', 'Boolean'))
56 56
                 ->withLine(67)
57 57
                 ->withModifiers(ArgumentDefinition::IS_NOT_NULL))
58
-            ->withLocation(...\array_map(function (string $location) use ($document): DirectiveLocation {
58
+            ->withLocation(...\array_map(function(string $location) use ($document): DirectiveLocation {
59 59
                 return new DirectiveLocation($this, $location);
60 60
             }, self::LOCATIONS));
61 61
     }
Please login to merge, or discard this patch.
src/Definition/Behaviour/HasInheritance.php 2 patches
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     abstract protected function fetch($type): TypeDefinition;
33 33
 
34 34
     /**
35
-     * @return iterable|TypeDefinition[]
35
+     * @return \Generator
36 36
      */
37 37
     public function getParents(): iterable
38 38
     {
@@ -61,7 +61,8 @@  discard block
 block discarded – undo
61 61
 
62 62
     /**
63 63
      * @param TypeDefinition ...$definitions
64
-     * @return ProvidesInheritance|$this
64
+     * @param TypeDefinition[] $definitions
65
+     * @return TypeDefinition[]
65 66
      * @throws TypeConflictException
66 67
      */
67 68
     public function extends(TypeDefinition ...$definitions): ProvidesInheritance
@@ -88,7 +89,7 @@  discard block
 block discarded – undo
88 89
     }
89 90
 
90 91
     /**
91
-     * @param string|TypeDefinition $type
92
+     * @param TypeDefinition $type
92 93
      * @return bool
93 94
      */
94 95
     public function isExtends($type): bool
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      */
82 82
     private function verifyExtensionType(TypeDefinition $def): void
83 83
     {
84
-        if (! $def::getType()->is(static::getType()->getName())) {
84
+        if (!$def::getType()->is(static::getType()->getName())) {
85 85
             $error = \sprintf('Type %s can extends only %s types, but %s given.', $this, static::getType(), $def);
86 86
             throw $this->error(new TypeConflictException($error));
87 87
         }
Please login to merge, or discard this patch.
src/Definition/Behaviour/HasTypeIndication.php 2 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,6 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
     /**
73 73
      * @param int ...$values
74
+     * @param integer[] $values
74 75
      * @return ProvidesTypeIndication|$this
75 76
      */
76 77
     public function withModifiers(int ...$values): ProvidesTypeIndication
@@ -83,7 +84,7 @@  discard block
 block discarded – undo
83 84
     }
84 85
 
85 86
     /**
86
-     * @param string|TypeDefinition $type
87
+     * @param string $type
87 88
      * @return ProvidesTypeIndication|$this
88 89
      */
89 90
     public function withTypeDefinition($type): ProvidesTypeIndication
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
     public function __toString(): string
101 101
     {
102 102
         try {
103
-            $parent = (string)$this->getDefinition();
103
+            $parent = (string) $this->getDefinition();
104 104
         } catch (\Throwable $e) {
105 105
             $parent = '?<?>';
106 106
         }
Please login to merge, or discard this patch.
src/AbstractDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
      */
169 169
     protected function error(\Throwable $error): ExternalFileException
170 170
     {
171
-        if (! $error instanceof ExternalFileException) {
171
+        if (!$error instanceof ExternalFileException) {
172 172
             $error = new ReflectionException($error->getMessage(), $error->getCode(), $error);
173 173
         }
174 174
 
Please login to merge, or discard this patch.
src/Definition/Behaviour/HasDefinitions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
      */
138 138
     public function getDefinition(string $name): ?TypeDefinition
139 139
     {
140
-        if (! \in_array($name, $this->types, true)) {
140
+        if (!\in_array($name, $this->types, true)) {
141 141
             return null;
142 142
         }
143 143
 
Please login to merge, or discard this patch.
src/Definition/Dependent/AbstractDependentTypeDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     public function __toString(): string
50 50
     {
51 51
         try {
52
-            $parent = (string)$this->getParentDefinition();
52
+            $parent = (string) $this->getParentDefinition();
53 53
         } catch (\Throwable $e) {
54 54
             $parent = '?<?>';
55 55
         }
Please login to merge, or discard this patch.
src/Definition/Dependent/DirectiveLocation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
         $locations = \array_merge(static::EXECUTABLE_LOCATIONS, static::SDL_LOCATIONS);
30 30
 
31
-        if (! \in_array($this->name, $locations, true)) {
31
+        if (!\in_array($this->name, $locations, true)) {
32 32
             throw $this->error(new TypeConflictException(\sprintf('Invalid name of %s', $this)));
33 33
         }
34 34
     }
Please login to merge, or discard this patch.
src/Definition/InterfaceDefinition.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,15 +31,15 @@
 block discarded – undo
31 31
      */
32 32
     public static function getType(): TypeInterface
33 33
     {
34
-        return Type::of(Type::INTERFACE);
34
+        return Type::of(Type::interface);
35 35
     }
36 36
 
37 37
     /**
38 38
      * @param TypeDefinition $definition
39 39
      * @return bool
40 40
      */
41
-    public function instanceOf(TypeDefinition $definition): bool
41
+    public function instanceof(TypeDefinition $definition): bool
42 42
     {
43
-        return $this->isImplements($definition) || parent::instanceOf($definition);
43
+        return $this->isImplements($definition) || parent::instanceof($definition);
44 44
     }
45 45
 }
Please login to merge, or discard this patch.