Passed
Branch master (58a10f)
by Timothy
02:29 queued 12s
created
src/Compliments/RandomComplimentCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.