Completed
Push — symfony-console ( 6549b1...5eb48f )
by Arnaud
02:30
created
src/Command/Command.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         }
51 51
         $this->path = realpath($this->getPath());
52 52
         $this->path = str_replace(DIRECTORY_SEPARATOR, '/', $this->getPath());
53
-        if (!file_exists($this->getPath() . '/' . self::CONFIG_FILE)) {
53
+        if (!file_exists($this->getPath().'/'.self::CONFIG_FILE)) {
54 54
             $message = sprintf('Cecil could not find "%s" file in "%s"', self::CONFIG_FILE, $this->getPath());
55 55
             throw new \InvalidArgumentException($message);
56 56
         }
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
      */
171 171
     public function messageCallback(OutputInterface $output)
172 172
     {
173
-        return function ($code, $message = '', $itemsCount = 0, $itemsMax = 0) use ($output) {
173
+        return function($code, $message = '', $itemsCount = 0, $itemsMax = 0) use ($output) {
174 174
             if ($this->quiet) {
175 175
                 return;
176 176
             } else {
Please login to merge, or discard this patch.