Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
20 | 11 | public function write(string $content, string $fileName): void |
|
21 | { |
||
22 | 11 | $this->output->writeln( |
|
23 | 11 | sprintf('<comment>START FILE %s==================================================</comment>', $fileName) |
|
24 | ); |
||
25 | 11 | $this->output->writeln($content); |
|
26 | 11 | $this->output->writeln( |
|
27 | 11 | sprintf('<comment>END FILE %s####################################################</comment>', $fileName) |
|
28 | ); |
||
29 | 11 | $this->output->writeln("<comment>#\n#\n#\n#</comment>"); |
|
30 | 11 | } |
|
32 |