@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Symfony\Component\Console\Output\OutputInterface; |
6 | 6 | use whm\Smoke\Config\Configuration; |
7 | -use whm\Smoke\Extensions\SmokeResponseRetriever\Retriever\Retriever; |
|
8 | 7 | use whm\Smoke\Rules\CheckResult; |
9 | 8 | |
10 | 9 |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $this->resultFile = $resultFile; |
29 | 29 | |
30 | 30 | if ($templateDir === null) { |
31 | - $this->templateDir = __DIR__ . '/templates'; |
|
31 | + $this->templateDir = __DIR__.'/templates'; |
|
32 | 32 | } else { |
33 | 33 | $this->templateDir = $templateDir; |
34 | 34 | } |
@@ -66,9 +66,9 @@ discard block |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | if (!file_put_contents($this->resultFile, $html)) { |
69 | - $this->output->writeln("<error>HTML Reporter extension: Could not write result file to " . $this->resultFile ."</error>"); |
|
69 | + $this->output->writeln("<error>HTML Reporter extension: Could not write result file to ".$this->resultFile."</error>"); |
|
70 | 70 | } else { |
71 | - $this->output->writeln("<info>HTML Reporter extension:</info> Result file written to " . $this->resultFile); |
|
71 | + $this->output->writeln("<info>HTML Reporter extension:</info> Result file written to ".$this->resultFile); |
|
72 | 72 | } |
73 | 73 | } |
74 | 74 |