@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * @param array $args |
40 | 40 | * @return mixed |
41 | 41 | */ |
42 | - function (string $methodName, ...$args) { |
|
42 | + function(string $methodName, ...$args) { |
|
43 | 43 | if (\method_exists($this, $methodName)) { |
44 | 44 | return $this->$methodName(...$args); |
45 | 45 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | /** |
88 | 88 | * @return mixed |
89 | 89 | */ |
90 | - function () use ($propertyName) { |
|
90 | + function() use ($propertyName) { |
|
91 | 91 | if (\property_exists($this, $propertyName)) { |
92 | 92 | return $this->$propertyName; |
93 | 93 | } |