Test Failed
Push — master ( bc5b04...424213 )
by Hannes
03:21
created
src/Parser/Definition.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 hanneskod\readmetester\Parser;
6 6
 
Please login to merge, or discard this patch.
src/Annotations.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 hanneskod\readmetester;
6 6
 
Please login to merge, or discard this patch.
src/Console/FormatterInterface.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 hanneskod\readmetester\Console;
6 6
 
Please login to merge, or discard this patch.
src/Runner/OutputOutcome.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 hanneskod\readmetester\Runner;
6 6
 
Please login to merge, or discard this patch.
src/Example/FilterInterface.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 hanneskod\readmetester\Example;
6 6
 
Please login to merge, or discard this patch.
src/Example/ExampleFactory.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\Example;
6 6
 
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             }
100 100
 
101 101
             if (isset($examples[$name])) {
102
-                throw new \RuntimeException("Example '$name' already exists in definition " . ($index + 1));
102
+                throw new \RuntimeException("Example '$name' already exists in definition ".($index + 1));
103 103
             }
104 104
 
105 105
             if (!$this->filter->isValid($name)) {
Please login to merge, or discard this patch.
src/PHPUnit/PhpunitListener.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 hanneskod\readmetester\PHPUnit;
6 6
 
Please login to merge, or discard this patch.
src/Expectation/Success.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 hanneskod\readmetester\Expectation;
6 6
 
Please login to merge, or discard this patch.
src/Expectation/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\Expectation;
6 6
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     private function isRegexp(string $input): bool
42 42
     {
43
-        set_error_handler(function () {
43
+        set_error_handler(function() {
44 44
         });
45 45
         $result = preg_match($input, '');
46 46
         restore_error_handler();
Please login to merge, or discard this patch.