Test Failed
Push — master ( a52ae2...22d245 )
by Hannes
01:58
created
spec/Example/ExampleRegistrySpec.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\Example;
6 6
 
Please login to merge, or discard this patch.
spec/Example/ProcessorContainerSpec.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\Example;
6 6
 
Please login to merge, or discard this patch.
spec/Example/FilterRegexpProcessorSpec.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\Example;
6 6
 
Please login to merge, or discard this patch.
spec/Example/FilterUnnamedProcessorSpec.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\Example;
6 6
 
Please login to merge, or discard this patch.
spec/Example/ExampleSpec.php 1 patch
Spacing   +3 added lines, -3 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\Example;
6 6
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     function it_can_create_with_active()
49 49
     {
50
-        $this->withActive(false)->shouldCreateExampleThat(function ($example) {
50
+        $this->withActive(false)->shouldCreateExampleThat(function($example) {
51 51
             return $example->isActive() == false;
52 52
         });
53 53
     }
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     public function getMatchers(): array
56 56
     {
57 57
         return [
58
-            'createExampleThat' => function (ExampleInterface $example, callable $operation) {
58
+            'createExampleThat' => function(ExampleInterface $example, callable $operation) {
59 59
                 return !!$operation($example);
60 60
             }
61 61
         ];
Please login to merge, or discard this patch.