Passed
Pull Request — master (#395)
by
unknown
03:36
created
src/Http/Helpers/http.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,6 +153,8 @@
 block discarded – undo
153 153
  */
154 154
 function nav_ref_decode(?string $ref): ?string
155 155
 {
156
-    if (!$ref) return null;
156
+    if (!$ref) {
157
+        return null;
158
+    }
157 159
     return base64_decode(strtr($ref, '-_', '+/')) ?: null;
158 160
 }
159 161
\ No newline at end of file
Please login to merge, or discard this patch.