aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tools/Utils.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Tools/Utils.php')
-rw-r--r--src/Wallabag/CoreBundle/Tools/Utils.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Tools/Utils.php b/src/Wallabag/CoreBundle/Tools/Utils.php
index 0c783110..4561f39f 100644
--- a/src/Wallabag/CoreBundle/Tools/Utils.php
+++ b/src/Wallabag/CoreBundle/Tools/Utils.php
@@ -16,7 +16,7 @@ class Utils
16 $token = substr(base64_encode(random_bytes($length)), 0, $length); 16 $token = substr(base64_encode(random_bytes($length)), 0, $length);
17 17
18 // remove character which can broken the url 18 // remove character which can broken the url
19 return str_replace(array('+', '/'), '', $token); 19 return str_replace(['+', '/'], '', $token);
20 } 20 }
21 21
22 /** 22 /**