@@ -50,7 +50,7 @@ |
||
50 | 50 | $typeNames = explode('|', $type); |
51 | 51 | return array_unique( |
52 | 52 | array_map( |
53 | - function ($typeName) use ($mapping) { |
|
53 | + function($typeName) use ($mapping) { |
|
54 | 54 | if (isset($mapping[$typeName])) { |
55 | 55 | return $mapping[$typeName]; |
56 | 56 | } |
@@ -163,7 +163,7 @@ |
||
163 | 163 | { |
164 | 164 | $matches = array_filter( |
165 | 165 | array_map( |
166 | - function ($pattern) use ($functionName) { |
|
166 | + function($pattern) use ($functionName) { |
|
167 | 167 | return fnmatch($pattern, $functionName); |
168 | 168 | }, |
169 | 169 | $this->methodPatterns |