From fb68ed377ec53b4c96e114df0c93eccbb3656696 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Mon, 17 Oct 2022 12:13:35 +1300 Subject: [PATCH] Fix imports --- app/init.php | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/app/init.php b/app/init.php index 5abefada2a..d8caa5f7b9 100644 --- a/app/init.php +++ b/app/init.php @@ -38,18 +38,6 @@ use Appwrite\Network\Validator\URL; use Appwrite\OpenSSL\OpenSSL; use Appwrite\Usage\Stats; use Appwrite\Utopia\View; -use Utopia\App; -use Utopia\Database\ID; -use Utopia\Logger\Logger; -use Utopia\Config\Config; -use Utopia\Locale\Locale; -use Utopia\Messaging\Adapters\SMS\Mock; -use Utopia\Messaging\Adapters\SMS\Msg91; -use Utopia\Messaging\Adapters\SMS\Telesign; -use Utopia\Messaging\Adapters\SMS\TextMagic; -use Utopia\Messaging\Adapters\SMS\Twilio; -use Utopia\Messaging\Adapters\SMS\Vonage; -use Utopia\Registry\Registry; use MaxMind\Db\Reader; use PHPMailer\PHPMailer\PHPMailer; use Swoole\Database\PDOConfig; @@ -70,6 +58,12 @@ use Utopia\Database\Validator\DatetimeValidator; use Utopia\Database\Validator\Structure; use Utopia\Locale\Locale; use Utopia\Logger\Logger; +use Utopia\Messaging\Adapters\SMS\Mock; +use Utopia\Messaging\Adapters\SMS\Msg91; +use Utopia\Messaging\Adapters\SMS\Telesign; +use Utopia\Messaging\Adapters\SMS\TextMagic; +use Utopia\Messaging\Adapters\SMS\Twilio; +use Utopia\Messaging\Adapters\SMS\Vonage; use Utopia\Registry\Registry; use Utopia\Storage\Device; use Utopia\Storage\Device\Backblaze;