@@ -87,7 +87,7 @@ |
||
87 | 87 | */ |
88 | 88 | public function updatedSources() |
89 | 89 | { |
90 | - return array_filter($this->sources, function (SourceInterface $source) { |
|
90 | + return array_filter($this->sources, function(SourceInterface $source) { |
|
91 | 91 | return $source->hasChanged(); |
92 | 92 | }); |
93 | 93 | } |
@@ -28,7 +28,7 @@ |
||
28 | 28 | if (null === $antPathMatcher) { |
29 | 29 | $antPathMatcher = new AntPathMatcher; |
30 | 30 | } |
31 | - $this->patterns = array_map(function ($path) use ($antPathMatcher) { |
|
31 | + $this->patterns = array_map(function($path) use ($antPathMatcher) { |
|
32 | 32 | return $antPathMatcher->isPattern($path) ? $path : $path.'/**'; |
33 | 33 | }, $paths); |
34 | 34 | $this->antPathMatcher = $antPathMatcher; |