@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | * @param string $strPrivateKey |
| 126 | 126 | * @return array|false |
| 127 | 127 | */ |
| 128 | - public function verifyRS256JWT(string $strJWT) : array|false |
|
| 128 | + public function verifyRS256JWT(string $strJWT) : array | false |
|
| 129 | 129 | { |
| 130 | 130 | // 1. split JWT into header, payload and signature |
| 131 | 131 | list($strJwtHeader64, $strJwtPayload64, $strJwtSignature64) = explode('.', $strJWT); |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | * @param string $strJSON |
| 181 | 181 | * @return array|false |
| 182 | 182 | */ |
| 183 | - protected function decodeJSON(string $strJSON) : array|false |
|
| 183 | + protected function decodeJSON(string $strJSON) : array | false |
|
| 184 | 184 | { |
| 185 | 185 | $decoded = json_decode($strJSON, true, 64, JSON_INVALID_UTF8_IGNORE); |
| 186 | 186 | if ($decoded === null) { |