Skip to content

Commit a6ee0ed

Browse files
committed
Namespace fix for pseudoBytes
1 parent 267f390 commit a6ee0ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SecureFuncs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public static function randomString($length)
171171
*/
172172
public static function pseudoBytes($length = 1)
173173
{
174-
$bytes = openssl_random_pseudo_bytes($length, $strong);
174+
$bytes = \openssl_random_pseudo_bytes($length, $strong);
175175
if ($strong === TRUE) {
176176
return $bytes;
177177
} else {

0 commit comments

Comments
 (0)