@@ -50,7 +50,7 @@ discard block |
||
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 |
||
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 { |