@@ -113,7 +113,7 @@ |
||
113 | 113 | $realPath, |
114 | 114 | \RecursiveDirectoryIterator::SKIP_DOTS |
115 | 115 | ); |
116 | - $iterator = new \RecursiveIteratorIterator( |
|
116 | + $iterator = new \RecursiveIteratorIterator( |
|
117 | 117 | $directoryIterator, |
118 | 118 | \RecursiveIteratorIterator::SELF_FIRST |
119 | 119 | ); |
@@ -2,12 +2,12 @@ |
||
2 | 2 | |
3 | 3 | /* Find bootstrap path */ |
4 | 4 | $rootPath = realpath(dirname(__FILE__)); |
5 | -while (!file_exists($rootPath . '/app/bootstrap.php') && $rootPath !== '/') { |
|
5 | +while (!file_exists($rootPath.'/app/bootstrap.php') && $rootPath !== '/') { |
|
6 | 6 | $rootPath = realpath(dirname($rootPath)); |
7 | 7 | } |
8 | 8 | |
9 | 9 | /* Include Magento bootstrap file */ |
10 | -require_once $rootPath . '/app/bootstrap.php'; |
|
10 | +require_once $rootPath.'/app/bootstrap.php'; |
|
11 | 11 | |
12 | 12 | /* Create git hook class autoloader */ |
13 | 13 | $_git_hook_loaded_class = []; |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | '', |
123 | 123 | \dirname($file) |
124 | 124 | ); |
125 | - $start .= '/'.\rtrim($relativeSubdirs, '/'); |
|
125 | + $start .= '/'.\rtrim($relativeSubdirs, '/'); |
|
126 | 126 | } |
127 | 127 | $realpath = \realpath($start.'/'.$path); |
128 | 128 | if (empty($realpath) || (!\file_exists($realpath) && !\is_dir($realpath))) { |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | ], |
184 | 184 | ], |
185 | 185 | ]); |
186 | - $result = null; |
|
186 | + $result = null; |
|
187 | 187 | try { |
188 | 188 | $headers = get_headers($href, 0, $context); |
189 | 189 | foreach ($headers as $header) { |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | $href, |
204 | 204 | var_export($result, true) |
205 | 205 | ); |
206 | - $return = 1; |
|
206 | + $return = 1; |
|
207 | 207 | #$time = round(microtime(true) - $start, 2); |
208 | 208 | #fwrite(STDERR, "\n".'Failed ('.$time.' seconds): '.$href); |
209 | 209 | } |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | ): void { |
75 | 75 | $this->testSuccesful = false; |
76 | 76 | $this->symbol = $symbol; |
77 | - $this->additionalInformation .= "\n".$additionalInformation; |
|
77 | + $this->additionalInformation .= "\n".$additionalInformation; |
|
78 | 78 | $this->additionalInformationVerbose = $additionalInformationVerbose; |
79 | 79 | } |
80 | 80 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | \implode( |
136 | 136 | "\n", |
137 | 137 | \array_map( |
138 | - function (string $text) { |
|
138 | + function(string $text) { |
|
139 | 139 | return \sprintf(' │ %s', $text); |
140 | 140 | }, |
141 | 141 | \explode("\n", $this->additionalInformation) |
@@ -89,7 +89,7 @@ |
||
89 | 89 | } |
90 | 90 | |
91 | 91 | $this->currentTestResult = new \EdmondsCommerce\PHPQA\PHPUnit\TestDox\TestResult( |
92 | - function (string $color, string $buffer) { |
|
92 | + function(string $color, string $buffer) { |
|
93 | 93 | return $this->formatWithColor($color, $buffer); |
94 | 94 | }, |
95 | 95 | $className, |