@@ -518,7 +518,7 @@ |
||
518 | 518 | */ |
519 | 519 | private function getFilteredClaims(): array |
520 | 520 | { |
521 | - return \array_filter($this->claims, static function ($value, string $key) { |
|
521 | + return \array_filter($this->claims, static function($value, string $key) { |
|
522 | 522 | return \array_key_exists($key, static::$requiredKeys) |
523 | 523 | || $value !== (static::$defaults[$key] ?? null); |
524 | 524 | }, ARRAY_FILTER_USE_BOTH); |
@@ -140,7 +140,7 @@ |
||
140 | 140 | */ |
141 | 141 | private function getFilteredClaims(): array |
142 | 142 | { |
143 | - return \array_filter($this->claims, static function ($value, string $key) { |
|
143 | + return \array_filter($this->claims, static function($value, string $key) { |
|
144 | 144 | return \array_key_exists($key, static::$requiredKeys) |
145 | 145 | || $value !== (static::$defaults[$key] ?? null); |
146 | 146 | }, ARRAY_FILTER_USE_BOTH); |