Test Failed
Push — master ( e46311...6bec89 )
by Hannes
02:05
created
spec/Runner/VoidOutcomeSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace spec\hanneskod\readmetester\Runner;
6 6
 
Please login to merge, or discard this patch.
spec/Runner/EvalRunnerSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace spec\hanneskod\readmetester\Runner;
6 6
 
Please login to merge, or discard this patch.
spec/Runner/OutputOutcomeSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace spec\hanneskod\readmetester\Runner;
6 6
 
Please login to merge, or discard this patch.
spec/Runner/ErrorOutcomeSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace spec\hanneskod\readmetester\Runner;
6 6
 
Please login to merge, or discard this patch.
spec/Runner/ProcessRunnerSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace spec\hanneskod\readmetester\Runner;
6 6
 
Please login to merge, or discard this patch.
spec/Runner/RunnerSpecTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace spec\hanneskod\readmetester\Runner;
6 6
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     function it_can_be_bootstraped()
57 57
     {
58
-        $this->beConstructedWith(__DIR__ . '/Bootstrap.php');
58
+        $this->beConstructedWith(__DIR__.'/Bootstrap.php');
59 59
         $this->run(new CodeBlock('new Bootstrap;'))->shouldHaveType(VoidOutcome::CLASS);
60 60
     }
61 61
 }
Please login to merge, or discard this patch.
spec/Utils/CodeBlockSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace spec\hanneskod\readmetester\Utils;
6 6
 
Please login to merge, or discard this patch.
src/Utils/CodeBlock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace hanneskod\readmetester\Utils;
6 6
 
@@ -21,6 +21,6 @@  discard block
 block discarded – undo
21 21
 
22 22
     public function prepend(CodeBlock $codeBlock): CodeBlock
23 23
     {
24
-        return new CodeBlock($codeBlock->getCode() . $this->getCode());
24
+        return new CodeBlock($codeBlock->getCode().$this->getCode());
25 25
     }
26 26
 }
Please login to merge, or discard this patch.