Completed
Push — master ( 58f8e7...70b0c3 )
by Alessandro
46:19 queued 35:16
created
src/Paraunit/Runner/Runner.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
     }
135 135
 
136 136
     /**
137
-     * @param $debug
137
+     * @param boolean $debug
138 138
      *
139 139
      * @return ParaunitProcessAbstract
140 140
      */
Please login to merge, or discard this patch.
src/Paraunit/Process/AbstractParaunitProcess.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,6 +136,6 @@
 block discarded – undo
136 136
      */
137 137
     public function setWaitingForTestResult($waitingForTestResult)
138 138
     {
139
-        $this->waitingForTestResult = (bool) $waitingForTestResult;
139
+        $this->waitingForTestResult = (bool)$waitingForTestResult;
140 140
     }
141 141
 }
Please login to merge, or discard this patch.
src/Paraunit/Printer/FailuresPrinter.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
     private function printFailuresOutput(TestResultContainer $testResultContainer, OutputInterface $output)
37 37
     {
38
-        if (! $testResultContainer->getTestResultFormat()->shouldPrintTestOutput()) {
38
+        if ( ! $testResultContainer->getTestResultFormat()->shouldPrintTestOutput()) {
39 39
             return;
40 40
         }
41 41
 
Please login to merge, or discard this patch.
src/Paraunit/Printer/ProcessPrinter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,13 +37,13 @@
 block discarded – undo
37 37
     {
38 38
         $process = $processEvent->getProcess();
39 39
 
40
-        if (! $processEvent->has('output_interface')) {
40
+        if ( ! $processEvent->has('output_interface')) {
41 41
             throw new \BadMethodCallException('missing output_interface');
42 42
         }
43 43
 
44 44
         $this->output = $processEvent->get('output_interface');
45 45
 
46
-        if (! $this->output instanceof OutputInterface) {
46
+        if ( ! $this->output instanceof OutputInterface) {
47 47
             throw new \BadMethodCallException('output_interface, unexpected type: ' . get_class($this->output));
48 48
         }
49 49
 
Please login to merge, or discard this patch.
src/Paraunit/Printer/FilesRecapPrinter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     private function printFileRecap(TestResultContainer $testResultContainer, OutputInterface $output)
34 34
     {
35
-        if (! $testResultContainer->getTestResultFormat()->shouldPrintFilesRecap()) {
35
+        if ( ! $testResultContainer->getTestResultFormat()->shouldPrintFilesRecap()) {
36 36
             return;
37 37
         }
38 38
 
Please login to merge, or discard this patch.
src/Paraunit/File/Cleaner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public static function cleanUpDir($dir)
33 33
     {
34
-        if (! file_exists($dir)) {
34
+        if ( ! file_exists($dir)) {
35 35
             return false;
36 36
         }
37 37
 
Please login to merge, or discard this patch.
src/Paraunit/TestResult/TestResultFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
             );
38 38
         }
39 39
 
40
-        if (! property_exists($log, 'message')) {
40
+        if ( ! property_exists($log, 'message')) {
41 41
             return new MuteTestResult();
42 42
         }
43 43
 
Please login to merge, or discard this patch.
src/Paraunit/Lifecycle/AbstractEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function get($contextParameterName)
32 32
     {
33
-        if (! $this->has($contextParameterName)) {
33
+        if ( ! $this->has($contextParameterName)) {
34 34
             throw new \LogicException('Cannot find parameter: ' . $contextParameterName);
35 35
         }
36 36
 
Please login to merge, or discard this patch.
src/Paraunit/File/TempDirectory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
             return;
69 69
         }
70 70
 
71
-        if (!mkdir($path) && !is_dir($path)) {
71
+        if ( ! mkdir($path) && ! is_dir($path)) {
72 72
             throw new \RuntimeException(
73 73
                 sprintf('Unable to create temporary directory \'%s\'.', $path)
74 74
             );
Please login to merge, or discard this patch.