Completed
Pull Request — master (#35)
by Alan
02:34
created
src/templates/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
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>
Please login to merge, or discard this patch.
src/Command.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.