summaryrefslogtreecommitdiffstats
path: root/lib/public/Security
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-07-22 21:10:16 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2017-07-22 21:10:16 +0200
commit361d2badd8f5be949acd94f52fc9ba2d0a98052d (patch)
tree76811147fccd8c0c62bc9884e32a349bf72c8806 /lib/public/Security
parent9a151056d034f4124ea837f77b5a13f35834fd22 (diff)
downloadnextcloud-server-361d2badd8f5be949acd94f52fc9ba2d0a98052d.tar.gz
nextcloud-server-361d2badd8f5be949acd94f52fc9ba2d0a98052d.zip
Some phpstorm inspection fixes
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public/Security')
-rw-r--r--lib/public/Security/ISecureRandom.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Security/ISecureRandom.php b/lib/public/Security/ISecureRandom.php
index 14190639f44..2f74a003f51 100644
--- a/lib/public/Security/ISecureRandom.php
+++ b/lib/public/Security/ISecureRandom.php
@@ -49,7 +49,7 @@ interface ISecureRandom {
* generate human readable random strings. Lower- and upper-case characters and digits
* are included. Characters which are ambiguous are excluded, such as I, l, and 1 and so on.
*/
- const CHAR_HUMAN_READABLE = "abcdefgijkmnopqrstwxyzABCDEFGHJKLMNPQRSTWXYZ23456789";
+ const CHAR_HUMAN_READABLE = 'abcdefgijkmnopqrstwxyzABCDEFGHJKLMNPQRSTWXYZ23456789';
/**
* Convenience method to get a low strength random number generator.