Test Failed
Push — master ( ecd78b...d05c81 )
by Kirill
02:43
created
src/Frontend/IR/Value/InputValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
          * @var ValueInterface $value
52 52
          */
53 53
         foreach ($this->getValue() as $key => $value) {
54
-            $result[] = $key->toString() . ': ' . (string)$value;
54
+            $result[] = $key->toString().': '.(string) $value;
55 55
         }
56 56
 
57 57
         return \sprintf('{%s}', \implode(', ', $result));
Please login to merge, or discard this patch.
src/Frontend/IR/Value/BooleanValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,6 +45,6 @@
 block discarded – undo
45 45
      */
46 46
     public function __toString(): string
47 47
     {
48
-        return '(bool)' . parent::__toString();
48
+        return '(bool)'.parent::__toString();
49 49
     }
50 50
 }
Please login to merge, or discard this patch.
src/Frontend/IR/Value/StringValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,6 +53,6 @@
 block discarded – undo
53 53
      */
54 54
     public function __toString(): string
55 55
     {
56
-        return '(string)' . parent::__toString();
56
+        return '(string)'.parent::__toString();
57 57
     }
58 58
 }
Please login to merge, or discard this patch.
src/Frontend/IR/Value/NullValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,6 +44,6 @@
 block discarded – undo
44 44
      */
45 45
     public function __toString(): string
46 46
     {
47
-        return '(null)' . parent::__toString();
47
+        return '(null)'.parent::__toString();
48 48
     }
49 49
 }
Please login to merge, or discard this patch.
src/Frontend/IR/Value/TypeValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      */
40 40
     public function __toString(): string
41 41
     {
42
-        return 'typeof ' . parent::__toString();
42
+        return 'typeof '.parent::__toString();
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.
src/Frontend/IR/Value/AnyValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     public function __toString(): string
29 29
     {
30
-        return '(any)' . parent::__toString();
30
+        return '(any)'.parent::__toString();
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/Frontend/IR/Value/IntValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function toString(): string
31 31
     {
32
-        return (string)$this->getValue();
32
+        return (string) $this->getValue();
33 33
     }
34 34
 
35 35
     /**
@@ -45,6 +45,6 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function __toString(): string
47 47
     {
48
-        return '(int)' . parent::__toString();
48
+        return '(int)'.parent::__toString();
49 49
     }
50 50
 }
Please login to merge, or discard this patch.
src/Frontend/IR/Value/FloatValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
             return $result;
36 36
         }
37 37
 
38
-        return $result . '.0';
38
+        return $result.'.0';
39 39
     }
40 40
 
41 41
     /**
@@ -51,6 +51,6 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function __toString(): string
53 53
     {
54
-        return '(float)' . parent::__toString();
54
+        return '(float)'.parent::__toString();
55 55
     }
56 56
 }
Please login to merge, or discard this patch.
src/Frontend/IR/Value/ConstantValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,6 +45,6 @@
 block discarded – undo
45 45
      */
46 46
     public function __toString(): string
47 47
     {
48
-        return '(const)' . parent::__toString();
48
+        return '(const)'.parent::__toString();
49 49
     }
50 50
 }
Please login to merge, or discard this patch.