@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * @param array $args |
| 38 | 38 | * @return mixed |
| 39 | 39 | */ |
| 40 | - function (string $methodName, ...$args) { |
|
| 40 | + function(string $methodName, ...$args) { |
|
| 41 | 41 | if (\method_exists($this, $methodName)) { |
| 42 | 42 | return $this->$methodName(...$args); |
| 43 | 43 | } |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | /** |
| 68 | 68 | * @return mixed |
| 69 | 69 | */ |
| 70 | - function () use ($propName) { |
|
| 70 | + function() use ($propName) { |
|
| 71 | 71 | if (\property_exists($this, $propName)) { |
| 72 | 72 | return $this->$propName; |
| 73 | 73 | } |