@@ -91,7 +91,7 @@ |
||
91 | 91 | private function addOptionsNode($name) |
92 | 92 | { |
93 | 93 | $treeBuilder = new ArrayNodeDefinition($name); |
94 | - $normalizer = function ($v) { |
|
94 | + $normalizer = function($v) { |
|
95 | 95 | return [ |
96 | 96 | 'target' => $v, |
97 | 97 | ]; |
@@ -58,7 +58,7 @@ |
||
58 | 58 | /** |
59 | 59 | * @param null|string $coverageId |
60 | 60 | */ |
61 | - public function setCoverageId($coverageId=null) |
|
61 | + public function setCoverageId($coverageId = null) |
|
62 | 62 | { |
63 | 63 | $this->coverageId = $coverageId; |
64 | 64 | } |
@@ -98,7 +98,7 @@ |
||
98 | 98 | if (!$this->has($id)) { |
99 | 99 | throw new \Exception('Cache item: '.$id.' is not set.'); |
100 | 100 | } |
101 | - $value = $this->cache->get($id, function ($item) { |
|
101 | + $value = $this->cache->get($id, function($item) { |
|
102 | 102 | return $item; |
103 | 103 | }); |
104 | 104 |
@@ -51,7 +51,7 @@ |
||
51 | 51 | $this->taskWatch() |
52 | 52 | ->monitor( |
53 | 53 | $paths, |
54 | - function (FilesystemEvent $event) use ($options) { |
|
54 | + function(FilesystemEvent $event) use ($options) { |
|
55 | 55 | $resource = (string) $event->getResource(); |
56 | 56 | if ( |
57 | 57 | false !== strpos($resource, 'build') |