@@ -89,7 +89,7 @@ |
||
89 | 89 | * @param InputInterface $input |
90 | 90 | * @param string $param |
91 | 91 | */ |
92 | - private function setServiceParameter(InputInterface &$input, $param) |
|
92 | + private function setServiceParameter(InputInterface & $input, $param) |
|
93 | 93 | { |
94 | 94 | Service::setParameter($param, $input->getOption($param)); |
95 | 95 | } |
@@ -54,7 +54,7 @@ |
||
54 | 54 | private static function flatten(array $array) |
55 | 55 | { |
56 | 56 | $return = array(); |
57 | - array_walk_recursive($array, function($a) use (&$return) { $return[] = $a; }); |
|
57 | + array_walk_recursive($array, function ($a) use (&$return) { $return[] = $a; }); |
|
58 | 58 | return $return; |
59 | 59 | } |
60 | 60 | } |
61 | 61 | \ No newline at end of file |
@@ -239,7 +239,7 @@ |
||
239 | 239 | ->setIterator($fileExplorer->getExplorer()) |
240 | 240 | ->addListener(Create::NAME, function ($e) { $this->watchListenerFunction($e); }) |
241 | 241 | ->addListener(Modify::NAME, function ($e) { $this->watchListenerFunction($e); }) |
242 | - ->addListener(Move::NAME, function ($e) { $this->watchListenerFunction($e); }) |
|
242 | + ->addListener(Move::NAME, function ($e) { $this->watchListenerFunction($e); }) |
|
243 | 243 | ; |
244 | 244 | |
245 | 245 | $this->output->writeln('Watch started successfully'); |