From f88a64df1c5261f5bee80ef1d7f675ce5b5f725a Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sun, 14 Aug 2022 22:01:58 +0300 Subject: [PATCH] Fix for linter --- src/Appwrite/Auth/Auth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Appwrite/Auth/Auth.php b/src/Appwrite/Auth/Auth.php index 7da989dbad..159282c5f4 100644 --- a/src/Appwrite/Auth/Auth.php +++ b/src/Appwrite/Auth/Auth.php @@ -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; }