@@ -66,10 +66,10 @@ |
||
66 | 66 | private function validateTraversableList($input): bool |
67 | 67 | { |
68 | 68 | $validate = $this->strict |
69 | - ? static function ($value) use ($input): bool { |
|
69 | + ? static function($value) use ($input) : bool { |
|
70 | 70 | return $value === $input; |
71 | 71 | } |
72 | - : static function ($value) use ($input): bool { |
|
72 | + : static function($value) use ($input): bool { |
|
73 | 73 | /** @noinspection TypeUnsafeComparisonInspection */ |
74 | 74 | return $value == $input; |
75 | 75 | }; |