Test Failed
Push — master ( e081e8...a6938b )
by Kirill
02:31
created
src/Backend/Vm.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,14 +70,14 @@
 block discarded – undo
70 70
         $value = \gettype($result);
71 71
 
72 72
         if (\is_object($result)) {
73
-            $value = \get_class($result) . '#' . \spl_object_hash($result);
73
+            $value = \get_class($result).'#'.\spl_object_hash($result);
74 74
 
75 75
             if (\method_exists($result, '__toString')) {
76
-                $value = (string)$result;
76
+                $value = (string) $result;
77 77
             }
78 78
         }
79 79
 
80
-        $message = \sprintf('%4s = %s', '#' . $opcode->getId(), $value);
80
+        $message = \sprintf('%4s = %s', '#'.$opcode->getId(), $value);
81 81
 
82 82
         $this->logger->debug($message);
83 83
     }
Please login to merge, or discard this patch.
src/Frontend/AST/Dependent/DependentTypeDefinitionNode.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
         $parent = $context->create();
56 56
         $current = yield new DefineOpcode($this->getNameValue(), new TypeValue($this->getType()));
57 57
 
58
-        yield function () use ($current, $parent) {
58
+        yield function() use ($current, $parent) {
59 59
             yield new AddDefinitionOpcode($current, $parent);
60 60
         };
61 61
 
62
-        if (! ($description = $this->getDescriptionValue()) instanceof NullValue) {
62
+        if (!($description = $this->getDescriptionValue()) instanceof NullValue) {
63 63
             yield new AddDescriptionOpcode($current, $description);
64 64
         }
65 65
     }
Please login to merge, or discard this patch.
src/Frontend/AST/Definition/TypeDefinitionNode.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,11 +44,11 @@
 block discarded – undo
44 44
         $parent = $context->create();
45 45
         $current = yield new DefineOpcode($this->getFullNameValue(), new TypeValue($this->getType()));
46 46
 
47
-        yield function () use ($current, $parent) {
47
+        yield function() use ($current, $parent) {
48 48
             yield new AddDefinitionOpcode($current, $parent);
49 49
         };
50 50
 
51
-        if (! ($description = $this->getDescriptionValue()) instanceof NullValue) {
51
+        if (!($description = $this->getDescriptionValue()) instanceof NullValue) {
52 52
             yield new AddDescriptionOpcode($current, $description);
53 53
         }
54 54
     }
Please login to merge, or discard this patch.
src/Frontend/Frontend.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     private function log($value): void
107 107
     {
108 108
         if ($value instanceof OpcodeInterface) {
109
-            $this->logger->debug((string)$value);
109
+            $this->logger->debug((string) $value);
110 110
         } else {
111 111
             $this->logger->info(\gettype($value));
112 112
         }
Please login to merge, or discard this patch.
src/Renderer.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     private static function node(NodeInterface $ast): string
59 59
     {
60
-        return '<' . $ast->getName() . '>';
60
+        return '<'.$ast->getName().'>';
61 61
     }
62 62
 
63 63
     /**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     private static function opcode(OpcodeInterface $opcode): string
68 68
     {
69
-        return '#' . $opcode->getId() . ' ' . $opcode->getName();
69
+        return '#'.$opcode->getId().' '.$opcode->getName();
70 70
     }
71 71
 
72 72
     /**
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      */
76 76
     private static function value(ValueInterface $value): string
77 77
     {
78
-        return (string)$value;
78
+        return (string) $value;
79 79
     }
80 80
 
81 81
     /**
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
                 return $value ? 'true' : 'false';
93 93
 
94 94
             case \is_string($value):
95
-                $minified = \preg_replace('/\s+/', ' ', (string)$value);
96
-                return '"' . \addcslashes($minified, '"') . '"';
95
+                $minified = \preg_replace('/\s+/', ' ', (string) $value);
96
+                return '"'.\addcslashes($minified, '"').'"';
97 97
 
98 98
             default:
99
-                return (string)$value;
99
+                return (string) $value;
100 100
         }
101 101
     }
102 102
 
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      */
124 124
     private static function object($value): string
125 125
     {
126
-        return \get_class($value) . '#' . \spl_object_hash($value);
126
+        return \get_class($value).'#'.\spl_object_hash($value);
127 127
     }
128 128
 
129 129
     /**
@@ -132,6 +132,6 @@  discard block
 block discarded – undo
132 132
      */
133 133
     private static function file(Readable $readable): string
134 134
     {
135
-        return '(file)' . $readable->getPathname();
135
+        return '(file)'.$readable->getPathname();
136 136
     }
137 137
 }
Please login to merge, or discard this patch.