Completed
Push — output_parsers_refactor ( cf2136...710907 )
by Alessandro
02:32
created
src/Paraunit/Filter/Filter.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -132,6 +132,7 @@
 block discarded – undo
132 132
      * @param \DOMNode $testSuiteNode
133 133
      * @param string $nodeName
134 134
      * @param string | null $defaultValue
135
+     * @param string $defaultValue
135 136
      *
136 137
      * @return string
137 138
      */
Please login to merge, or discard this patch.
Paraunit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,3 +1,3 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require __DIR__.'/vendor/autoload.php';
3
+require __DIR__ . '/vendor/autoload.php';
Please login to merge, or discard this patch.
src/Paraunit/Runner/Runner.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             new EngineEvent($files, $outputInterface, array('start' => $start,))
73 73
         );
74 74
 
75
-        while ( ! empty($this->processStack) || ! empty($this->processRunning)) {
75
+        while (!empty($this->processStack) || !empty($this->processRunning)) {
76 76
 
77 77
             if ($process = $this->runProcess($debug)) {
78 78
                 $this->eventDispatcher->dispatch(ProcessEvent::PROCESS_STARTED, new ProcessEvent($process));
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
      */
141 141
     protected function runProcess($debug)
142 142
     {
143
-        if ($this->maxProcessNumber > count($this->processRunning) && ! empty($this->processStack)) {
143
+        if ($this->maxProcessNumber > count($this->processRunning) && !empty($this->processStack)) {
144 144
             /** @var ParaunitProcessInterface $process */
145 145
             $process = array_pop($this->processStack);
146 146
             $process->start();
Please login to merge, or discard this patch.
src/Paraunit/Process/ProcessFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function createProcess($testFilePath)
35 35
     {
36
-        if ( ! $this->phpunitConfigFile instanceof PHPUnitConfigFile) {
36
+        if (!$this->phpunitConfigFile instanceof PHPUnitConfigFile) {
37 37
             throw new \Exception('PHPUnit config missing');
38 38
         }
39 39
 
Please login to merge, or discard this patch.
src/Paraunit/Parser/TestResultsParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         if (!empty($matches)) {
43 43
             // fix per PHPUNIT < 4.7, strip della riga della config
44 44
             if (substr($matches[0], 0, 24) == $this::PHPUNIT_CONFIG_LOAD) {
45
-                $results = preg_replace('/^'.preg_quote($this::PHPUNIT_CONFIG_LOAD).'.*\n\n/', '', $matches[0]);
45
+                $results = preg_replace('/^' . preg_quote($this::PHPUNIT_CONFIG_LOAD) . '.*\n\n/', '', $matches[0]);
46 46
             } else {
47 47
                 $results = $matches[0];
48 48
             }
Please login to merge, or discard this patch.
src/Paraunit/Tests/Stub/ConsoleOutputStub.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function writeln($messages, $type = self::OUTPUT_NORMAL)
25 25
     {
26
-        $this->outputBuffer .= "\n".$messages;
26
+        $this->outputBuffer .= "\n" . $messages;
27 27
     }
28 28
 
29 29
     /**
Please login to merge, or discard this patch.
src/Paraunit/Tests/StubbedPHPUnitBaseTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,6 +113,6 @@
 block discarded – undo
113 113
      */
114 114
     protected function getOutputFileContent($filename)
115 115
     {
116
-        return file_get_contents(__DIR__.'/Stub/PHPUnitOutput/'.$filename);
116
+        return file_get_contents(__DIR__ . '/Stub/PHPUnitOutput/' . $filename);
117 117
     }
118 118
 }
Please login to merge, or discard this patch.
src/Paraunit/Lifecycle/ProcessEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     public function get($contextParameterName)
59 59
     {
60 60
         if (!$this->has($contextParameterName)) {
61
-            throw new \LogicException('Cannot find parameter: '.$contextParameterName);
61
+            throw new \LogicException('Cannot find parameter: ' . $contextParameterName);
62 62
         }
63 63
 
64 64
         return $this->context[$contextParameterName];
Please login to merge, or discard this patch.
src/Paraunit/Configuration/PHPUnitBinFile.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
      */
22 22
     public function __construct()
23 23
     {
24
-        if (file_exists(__DIR__.self::PHPUNIT_RELPATH_FOR_VENDOR)) {
25
-            $this->phpUnitBin = __DIR__.self::PHPUNIT_RELPATH_FOR_VENDOR;
26
-        } elseif (file_exists(__DIR__.self::PHPUNIT_RELPATH_FOR_STANDALONE)) {
27
-            $this->phpUnitBin = __DIR__.self::PHPUNIT_RELPATH_FOR_STANDALONE;
24
+        if (file_exists(__DIR__ . self::PHPUNIT_RELPATH_FOR_VENDOR)) {
25
+            $this->phpUnitBin = __DIR__ . self::PHPUNIT_RELPATH_FOR_VENDOR;
26
+        } elseif (file_exists(__DIR__ . self::PHPUNIT_RELPATH_FOR_STANDALONE)) {
27
+            $this->phpUnitBin = __DIR__ . self::PHPUNIT_RELPATH_FOR_STANDALONE;
28 28
         } else {
29 29
             throw new \Exception('PHPUnit bin not found');
30 30
         }
Please login to merge, or discard this patch.