@@ -58,7 +58,7 @@ |
||
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 | } |
@@ -92,7 +92,7 @@ |
||
92 | 92 | sprintf('%s/js/history-%d.json', $logDir, $next), |
93 | 93 | json_encode($today, JSON_PRETTY_PRINT) |
94 | 94 | ); |
95 | - file_put_contents( |
|
95 | + file_put_contents( |
|
96 | 96 | sprintf('%s/js/latest.json', $logDir, $next), |
97 | 97 | json_encode($today, JSON_PRETTY_PRINT) |
98 | 98 | ); |
@@ -18,9 +18,9 @@ |
||
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 |