Test Failed
Push — master ( 22d245...e46311 )
by Hannes
02:55
created
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/Expectation/OutputExpectationSpec.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\Expectation;
6 6
 
Please login to merge, or discard this patch.
spec/Expectation/ErrorExpectationSpec.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\Expectation;
6 6
 
Please login to merge, or discard this patch.
spec/Expectation/FailureSpec.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\Expectation;
6 6
 
Please login to merge, or discard this patch.
spec/Expectation/SuccessSpec.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\Expectation;
6 6
 
Please login to merge, or discard this patch.
spec/Utils/RegexpSpec.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/Regexp.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
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     private function isRegexp(string $input): bool
40 40
     {
41
-        set_error_handler(function () {
41
+        set_error_handler(function() {
42 42
         });
43 43
         $result = preg_match($input, '');
44 44
         restore_error_handler();
Please login to merge, or discard this patch.