Passed
Push — master ( 4ed5da...df57b2 )
by Thomas Mauro
01:56
created
src/Model/IssuerMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -518,7 +518,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Model/ClientMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.