@@ -16,7 +16,7 @@ |
||
| 16 | 16 | <?php foreach ($files as $fileName => $issuesCount) : ?> |
| 17 | 17 | <tr> |
| 18 | 18 | <td class="mdl-data-table__cell--non-numeric"><a href="<?= |
| 19 | - str_replace(DIRECTORY_SEPARATOR, '_', $fileName) . '.html' |
|
| 19 | + str_replace(DIRECTORY_SEPARATOR, '_', $fileName).'.html' |
|
| 20 | 20 | ?>"><?= $fileName ?></a></td> |
| 21 | 21 | <td><?= $issuesCount ?></td> |
| 22 | 22 | </tr> |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | |
| 125 | 125 | if (!isset($formatClasses[$format])) { |
| 126 | 126 | throw new UnexpectedValueException( |
| 127 | - 'Invalid format: "' . $format . '"' |
|
| 127 | + 'Invalid format: "'.$format.'"' |
|
| 128 | 128 | ); |
| 129 | 129 | } |
| 130 | 130 | |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | if (0 === strpos($path, DIRECTORY_SEPARATOR)) { |
| 218 | 218 | continue; |
| 219 | 219 | } |
| 220 | - $path = $this->getWorkingDirectory() . DIRECTORY_SEPARATOR . $path; |
|
| 220 | + $path = $this->getWorkingDirectory().DIRECTORY_SEPARATOR.$path; |
|
| 221 | 221 | } |
| 222 | 222 | $this->analysedPaths = $paths; |
| 223 | 223 | } |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | */ |
| 256 | 256 | public function getDescription() |
| 257 | 257 | { |
| 258 | - return 'PHP Hound ' . Analyser::VERSION; |
|
| 258 | + return 'PHP Hound '.Analyser::VERSION; |
|
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | /** |