aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Security/SecureRandom.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Security/SecureRandom.php')
-rw-r--r--lib/private/Security/SecureRandom.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Security/SecureRandom.php b/lib/private/Security/SecureRandom.php
index 0e3411f8ab6..4826399ff5b 100644
--- a/lib/private/Security/SecureRandom.php
+++ b/lib/private/Security/SecureRandom.php
@@ -51,7 +51,7 @@ class SecureRandom implements ISecureRandom {
$maxCharIndex = \strlen($characters) - 1;
$randomString = '';
- while($length > 0) {
+ while ($length > 0) {
$randomNumber = \random_int(0, $maxCharIndex);
$randomString .= $characters[$randomNumber];
$length--;