Passed
Push — master ( c1ddb5...570b0e )
by Thomas Mauro
04:51
created
src/Issuer/Metadata/IssuerMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -580,7 +580,7 @@
 block discarded – undo
580 580
      */
581 581
     private function getFilteredClaims(): array
582 582
     {
583
-        return array_filter($this->metadata, static function ($value, string $key) {
583
+        return array_filter($this->metadata, static function($value, string $key) {
584 584
             return array_key_exists($key, self::$requiredKeys)
585 585
                 || $value !== (self::$defaults[$key] ?? null);
586 586
         }, ARRAY_FILTER_USE_BOTH);
Please login to merge, or discard this patch.
src/Client/Metadata/ClientMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@
 block discarded – undo
181 181
      */
182 182
     private function getFilteredClaims(): array
183 183
     {
184
-        return array_filter($this->metadata, static function ($value, string $key) {
184
+        return array_filter($this->metadata, static function($value, string $key) {
185 185
             return array_key_exists($key, self::$requiredKeys)
186 186
                 || $value !== (self::$defaults[$key] ?? null);
187 187
         }, ARRAY_FILTER_USE_BOTH);
Please login to merge, or discard this patch.