Completed
Push — master ( 6189d0...6e59d5 )
by Alessandro
06:49
created
src/Paraunit/Parser/JSON/LogFetcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Parser\JSON;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Parser/JSON/ParserChainElementInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Parser\JSON;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Parser/JSON/LogParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Parser\JSON;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Parser/JSON/RetryParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Parser\JSON;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Parser/JSON/AbnormalTerminatedParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Parser\JSON;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Bin/run-paraunit.inc.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4
-if (! ini_get('date.timezone') && ! date_default_timezone_get()) {
4
+if ( ! ini_get('date.timezone') && ! date_default_timezone_get()) {
5 5
     date_default_timezone_set('UTC');
6 6
 }
7 7
 
Please login to merge, or discard this patch.
src/Paraunit/Printer/FilesRecapPrinter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Printer;
5 5
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     private function printFileRecap(TestResultContainerInterface $testResultContainer)
25 25
     {
26
-        if (! $testResultContainer->getTestResultFormat()->shouldPrintFilesRecap()) {
26
+        if ( ! $testResultContainer->getTestResultFormat()->shouldPrintFilesRecap()) {
27 27
             return;
28 28
         }
29 29
 
Please login to merge, or discard this patch.
src/Paraunit/Runner/Pipeline.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     public function execute(AbstractParaunitProcess $process)
37 37
     {
38
-        if (! $this->isFree()) {
38
+        if ( ! $this->isFree()) {
39 39
             throw new \RuntimeException('This pipeline is not free');
40 40
         }
41 41
 
Please login to merge, or discard this patch.
src/Paraunit/Configuration/PHPUnitConfig.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Configuration;
5 5
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             $configFile .= DIRECTORY_SEPARATOR . self::DEFAULT_FILE_NAME;
77 77
         }
78 78
 
79
-        if (! is_file($configFile) || ! is_readable($configFile)) {
79
+        if ( ! is_file($configFile) || ! is_readable($configFile)) {
80 80
             throw new \InvalidArgumentException('Config file ' . $configFile . ' does not exist or is not readable');
81 81
         }
82 82
 
Please login to merge, or discard this patch.