Completed
Pull Request — master (#358)
by Oskar
12:42
created
src/Hal/Application/Application.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
         // analyze
59 59
         try {
60 60
             $metrics = (new Analyze($config, $output, $issuer))->run($files);
61
-        }catch(ConfigException $e) {
61
+        } catch(ConfigException $e) {
62 62
             $output->writeln(sprintf('<error>%s</error>', $e->getMessage()));
63 63
             exit(1);
64 64
         }
Please login to merge, or discard this patch.
src/Hal/Component/Output/ProgressBar.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@
 block discarded – undo
18 18
      * @package Hal\Component\Issue
19 19
      */
20 20
 /**
21
- * Class ProgressBar
22
- * @package Hal\Component\Output
23
- */
21
+     * Class ProgressBar
22
+     * @package Hal\Component\Output
23
+     */
24 24
 class ProgressBar
25 25
 {
26 26
 
Please login to merge, or discard this patch.
src/Hal/Report/Html/Reporter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
             sprintf('%s/js/history-%d.json', $logDir, $next),
91 91
             json_encode($today, JSON_PRETTY_PRINT)
92 92
         );
93
-	    file_put_contents(
93
+        file_put_contents(
94 94
             sprintf('%s/js/latest.json', $logDir),
95 95
             json_encode($today, JSON_PRETTY_PRINT)
96 96
         );
Please login to merge, or discard this patch.