Fix usage of PHP method within namespace

* introduced wiht 045ea4eb
This commit is contained in:
Morris Jobke 2016-01-14 09:24:21 +01:00
parent 205fbcbfa3
commit 73dd8c17de
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class SecureRandom implements ISecureRandom {
$randomString = '';
while($length > 0) {
$randomNumber = random_int(0, $maxCharIndex);
$randomNumber = \random_int(0, $maxCharIndex);
$randomString .= $characters[$randomNumber];
$length--;
}