@@ -44,7 +44,7 @@ |
||
44 | 44 | * |
45 | 45 | * @throws RuntimeException If no DOM document is available. |
46 | 46 | */ |
47 | - public static function findElement(DOMNode $ref, string $name): DOMElement|false |
|
47 | + public static function findElement(DOMNode $ref, string $name): DOMElement | false |
|
48 | 48 | { |
49 | 49 | $doc = $ref instanceof DOMDocument ? $ref : $ref->ownerDocument; |
50 | 50 | if ($doc === null) { |
@@ -54,7 +54,7 @@ |
||
54 | 54 | * |
55 | 55 | * @return string |
56 | 56 | */ |
57 | - public static function parseIssuer(array|string $issuer): string |
|
57 | + public static function parseIssuer(array | string $issuer): string |
|
58 | 58 | { |
59 | 59 | if (is_array($issuer)) { |
60 | 60 | $parts = []; |
@@ -134,7 +134,7 @@ |
||
134 | 134 | */ |
135 | 135 | public function decrypt(EncryptionAlgorithmInterface $decryptor): string |
136 | 136 | { |
137 | - $cipherValue = $this->getCipherData()->getCipherValue(); |
|
137 | + $cipherValue = $this->getCipherData()->getCipherValue(); |
|
138 | 138 | Assert::notNull( |
139 | 139 | $cipherValue, |
140 | 140 | 'Decrypting keys by reference is not supported.', |