Passed
Push — main ( c712ce...3b8cb4 )
by Stefan
09:52
created
SKien/Formgenerator/FormSecrets.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.