Test Failed
Push — master ( 3f86cd...7c1b50 )
by Kirill
01:29
created
src/Introspection/IntrospectionDocument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     /**
32 32
      * @var string
33 33
      */
34
-    public const INTROSPECTION_SCHEMA_PATH = __DIR__ . '/../../resources/introspection.graphqls';
34
+    public const INTROSPECTION_SCHEMA_PATH = __DIR__.'/../../resources/introspection.graphqls';
35 35
 
36 36
     /**
37 37
      * IntrospectionDocument constructor.
Please login to merge, or discard this patch.
src/Stdlib/StdlibDocument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * @var string
34 34
      */
35
-    public const STDLIB_SCHEMA_PATH = __DIR__ . '/../../resources/stdlib.graphqls';
35
+    public const STDLIB_SCHEMA_PATH = __DIR__.'/../../resources/stdlib.graphqls';
36 36
 
37 37
     /**
38 38
      * GraphQLDocument constructor.
Please login to merge, or discard this patch.
src/Dictionary/CallbackDictionary.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@
 block discarded – undo
50 50
     private function invoke(string $name, Definition $from = null): void
51 51
     {
52 52
         foreach ($this->callbacks as $callback) {
53
-            if (! $this->has($name)) {
54
-                $callback($name, $from, function (TypeDefinition $type): void {
53
+            if (!$this->has($name)) {
54
+                $callback($name, $from, function(TypeDefinition $type): void {
55 55
                     $this->add($type);
56 56
                 });
57 57
             }
Please login to merge, or discard this patch.
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/Stdlib/Scalar/IdScalar.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,11 +51,11 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function parse($value): string
53 53
     {
54
-        if (! \is_scalar($value)) {
54
+        if (!\is_scalar($value)) {
55 55
             throw new TypeConflictException(\sprintf('Could not parse %s type', \gettype($value)));
56 56
         }
57 57
 
58
-        return (string)parent::parse($value);
58
+        return (string) parent::parse($value);
59 59
     }
60 60
 
61 61
     /**
@@ -65,11 +65,11 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function serialize($value): string
67 67
     {
68
-        if (! \is_scalar($value)) {
68
+        if (!\is_scalar($value)) {
69 69
             throw new TypeConflictException(\sprintf('Could not serialize %s type', \gettype($value)));
70 70
         }
71 71
 
72
-        return (string)parent::serialize($value);
72
+        return (string) parent::serialize($value);
73 73
     }
74 74
 
75 75
     /**
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 an object or as the key for a cache. The ID type is serialized in the 
32 32
 same way as a String; however, defining it as an ID signifies that it 
33 33
 is not intended to be human‐readable.
34
-Description;
34
+description;
35 35
 
36 36
     /**
37 37
      * @var int
Please login to merge, or discard this patch.
src/Stdlib/Scalar/BooleanScalar.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,11 +46,11 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function parse($value): bool
48 48
     {
49
-        if (! \is_scalar($value)) {
49
+        if (!\is_scalar($value)) {
50 50
             throw new TypeConflictException(\sprintf('Could not parse %s type', \gettype($value)));
51 51
         }
52 52
 
53
-        return (bool)parent::parse($value);
53
+        return (bool) parent::parse($value);
54 54
     }
55 55
 
56 56
     /**
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function serialize($value): bool
62 62
     {
63
-        if (! \is_scalar($value)) {
63
+        if (!\is_scalar($value)) {
64 64
             throw new TypeConflictException(\sprintf('Could not serialize %s type', \gettype($value)));
65 65
         }
66 66
 
67
-        return (bool)parent::serialize($value);
67
+        return (bool) parent::serialize($value);
68 68
     }
69 69
 
70 70
     /**
Please login to merge, or discard this patch.
src/Stdlib/Scalar/FloatScalar.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,11 +46,11 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function parse($value): float
48 48
     {
49
-        if (! \is_scalar($value)) {
49
+        if (!\is_scalar($value)) {
50 50
             throw new TypeConflictException(\sprintf('Could not parse %s type', \gettype($value)));
51 51
         }
52 52
 
53
-        return (float)parent::parse($value);
53
+        return (float) parent::parse($value);
54 54
     }
55 55
 
56 56
     /**
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function serialize($value): float
62 62
     {
63
-        if (! \is_scalar($value)) {
63
+        if (!\is_scalar($value)) {
64 64
             throw new TypeConflictException(\sprintf('Could not serialize %s type', \gettype($value)));
65 65
         }
66 66
 
67
-        return (float)parent::serialize($value);
67
+        return (float) parent::serialize($value);
68 68
     }
69 69
 
70 70
     /**
Please login to merge, or discard this patch.
src/Stdlib/Scalar/IntScalar.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,11 +46,11 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function parse($value): int
48 48
     {
49
-        if (! \is_scalar($value)) {
49
+        if (!\is_scalar($value)) {
50 50
             throw new TypeConflictException(\sprintf('Could not parse %s type', \gettype($value)));
51 51
         }
52 52
 
53
-        return (int)parent::parse($value);
53
+        return (int) parent::parse($value);
54 54
     }
55 55
 
56 56
     /**
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function serialize($value): int
62 62
     {
63
-        if (! \is_scalar($value)) {
63
+        if (!\is_scalar($value)) {
64 64
             throw new TypeConflictException(\sprintf('Could not serialize %s type', \gettype($value)));
65 65
         }
66 66
 
67
-        return (int)parent::serialize($value);
67
+        return (int) parent::serialize($value);
68 68
     }
69 69
 
70 70
     /**
Please login to merge, or discard this patch.
src/Stdlib/Scalar/DateTimeScalar.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,11 +50,11 @@  discard block
 block discarded – undo
50 50
             return $value;
51 51
         }
52 52
 
53
-        if (! \is_scalar($value)) {
53
+        if (!\is_scalar($value)) {
54 54
             throw new TypeConflictException(\sprintf('Could not parse %s type', \gettype($value)));
55 55
         }
56 56
 
57
-        return $this->parseDateTime((string)parent::parse($value));
57
+        return $this->parseDateTime((string) parent::parse($value));
58 58
     }
59 59
 
60 60
     /**
@@ -68,11 +68,11 @@  discard block
 block discarded – undo
68 68
             return $value->format(\DateTime::RFC3339);
69 69
         }
70 70
 
71
-        if (! \is_scalar($value)) {
71
+        if (!\is_scalar($value)) {
72 72
             throw new TypeConflictException(\sprintf('Could not serialize %s type', \gettype($value)));
73 73
         }
74 74
 
75
-        return $this->parseDateTime((string)$value)
75
+        return $this->parseDateTime((string) $value)
76 76
             ->format(\DateTime::RFC3339);
77 77
     }
78 78
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     private function parseDateTime(string $value): \DateTimeInterface
85 85
     {
86 86
         try {
87
-            return new \DateTime((string)$value, new \DateTimeZone('UTC'));
87
+            return new \DateTime((string) $value, new \DateTimeZone('UTC'));
88 88
         } catch (\Throwable $e) {
89 89
             $message = \str_replace('DateTime::__construct(): ', '', $e->getMessage());
90 90
 
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     public const TYPE_DESCRIPTION = <<<Description
30 30
             The DateTime scalar conforms to the **RFC 3339** 
31 31
             profile of the **ISO 8601** standard.
32
-Description;
32
+description;
33 33
 
34 34
     /**
35 35
      * @var int
Please login to merge, or discard this patch.