@@ -68,7 +68,7 @@ |
||
| 68 | 68 | Assert::notEmpty($this->configuredKeys); |
| 69 | 69 | |
| 70 | 70 | $logger = $this->logger; |
| 71 | - $pemCandidates = $this->configuredKeys->filter(function (Key $key) use ($logger) { |
|
| 71 | + $pemCandidates = $this->configuredKeys->filter(function(Key $key) use ($logger) { |
|
| 72 | 72 | if (!$key instanceof X509) { |
| 73 | 73 | $logger->debug(sprintf('Skipping unknown key type: "%s"', $key['type'])); |
| 74 | 74 | return false; |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | Assert::maxCount($children, C::UNBOUNDED_LIMIT); |
| 41 | 41 | Assert::allIsInstanceOfAny($children, [Assertion::class, Attribute::class]); |
| 42 | 42 | |
| 43 | - $assertions = array_filter($children, function ($child) { |
|
| 43 | + $assertions = array_filter($children, function($child) { |
|
| 44 | 44 | return $child instanceof Assertion; |
| 45 | 45 | }); |
| 46 | 46 | |
@@ -229,7 +229,7 @@ |
||
| 229 | 229 | Assert::maxCount(array_unique($types), 1, 'Multiple class types cannot be used.'); |
| 230 | 230 | |
| 231 | 231 | $languages = array_map( |
| 232 | - function ($elt) { |
|
| 232 | + function($elt) { |
|
| 233 | 233 | return $elt->getLanguage(); |
| 234 | 234 | }, |
| 235 | 235 | $elements, |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | * within a given <mdrpi:UsageInfo>, for a given language |
| 40 | 40 | */ |
| 41 | 41 | $languages = array_map( |
| 42 | - function ($up) { |
|
| 42 | + function($up) { |
|
| 43 | 43 | return $up->getLanguage(); |
| 44 | 44 | }, |
| 45 | 45 | $usagePolicy, |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | * within a given <mdrpi:RegistrationInfo>, for a given language |
| 38 | 38 | */ |
| 39 | 39 | $languages = array_map( |
| 40 | - function ($rp) { |
|
| 40 | + function($rp) { |
|
| 41 | 41 | return $rp->getLanguage(); |
| 42 | 42 | }, |
| 43 | 43 | $registrationPolicy, |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | $required = false; |
| 77 | 77 | } |
| 78 | 78 | $privateKeys = $this->get('privateKeys'); |
| 79 | - $key = array_filter($privateKeys, function (PrivateKey $key) use ($name) { |
|
| 79 | + $key = array_filter($privateKeys, function(PrivateKey $key) use ($name) { |
|
| 80 | 80 | return $key->getName() === $name; |
| 81 | 81 | }); |
| 82 | 82 | |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | $required = false; |
| 77 | 77 | } |
| 78 | 78 | $privateKeys = $this->get('privateKeys'); |
| 79 | - $key = array_filter($privateKeys, function (PrivateKey $key) use ($name) { |
|
| 79 | + $key = array_filter($privateKeys, function(PrivateKey $key) use ($name) { |
|
| 80 | 80 | return $key->getName() === $name; |
| 81 | 81 | }); |
| 82 | 82 | |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | return $assertion; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - $decryptionKeys = $this->privateKeyLoader->loadDecryptionKeys($this->identityProvider, $this->serviceProvider); |
|
| 72 | + $decryptionKeys = $this->privateKeyLoader->loadDecryptionKeys($this->identityProvider, $this->serviceProvider); |
|
| 73 | 73 | |
| 74 | 74 | $decrypted = null; |
| 75 | 75 | foreach ($decryptionKeys as $index => $key) { |
@@ -100,7 +100,7 @@ |
||
| 100 | 100 | Assert::maxCount( |
| 101 | 101 | array_filter( |
| 102 | 102 | $attributeConsumingService, |
| 103 | - function (AttributeConsumingService $acs) { |
|
| 103 | + function(AttributeConsumingService $acs) { |
|
| 104 | 104 | return $acs->getIsDefault()?->toBoolean() === true; |
| 105 | 105 | }, |
| 106 | 106 | ), |