1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

Fix for linter

This commit is contained in:
Eldad Fux 2022-08-14 22:01:58 +03:00
parent 9b897629ba
commit f88a64df1c

View file

@ -296,9 +296,9 @@ class Auth
$value = '';
for ($i = 0; $i < $length; $i++) {
$value .= random_int(0,9);
$value .= random_int(0, 9);
}
return $value;
}