@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | 'f', |
23 | 23 | InputOption::VALUE_OPTIONAL, |
24 | 24 | 'Source file', |
25 | - realpath(dirname(dirname(__DIR__)) . '/compliments.txt') |
|
25 | + realpath(dirname(dirname(__DIR__)).'/compliments.txt') |
|
26 | 26 | ) |
27 | 27 | ->addOption('width', 'w', InputOption::VALUE_OPTIONAL, 'Console width', 80) |
28 | 28 | ->addOption('delimiter', 'd', InputOption::VALUE_OPTIONAL, 'Console delimiter', '='); |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $boundaryDelimiter = $input->getOption('delimiter'); |
44 | 44 | $boundary = str_repeat($boundaryDelimiter, $consoleWidth); |
45 | 45 | |
46 | - $output->writeln($boundary . PHP_EOL); |
|
46 | + $output->writeln($boundary.PHP_EOL); |
|
47 | 47 | $output->writeln(sprintf('By the way... %s', $compliment)); |
48 | 48 | $output->writeln($boundary); |
49 | 49 | } |