@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare (strict_types=1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Nopolabs\Test; |
5 | 5 |
@@ -200,14 +200,14 @@ |
||
200 | 200 | |
201 | 201 | private function getPublicMethods(ReflectionClass $reflection) : array |
202 | 202 | { |
203 | - return array_map(function (ReflectionMethod $method) { |
|
203 | + return array_map(function(ReflectionMethod $method) { |
|
204 | 204 | return $method->name; |
205 | 205 | }, $reflection->getMethods(ReflectionMethod::IS_PUBLIC)); |
206 | 206 | } |
207 | 207 | |
208 | 208 | private function getAbstractMethods(ReflectionClass $reflection) : array |
209 | 209 | { |
210 | - return array_map(function (ReflectionMethod $method) { |
|
210 | + return array_map(function(ReflectionMethod $method) { |
|
211 | 211 | return $method->name; |
212 | 212 | }, $reflection->getMethods(ReflectionMethod::IS_ABSTRACT)); |
213 | 213 | } |