From 97ed0dc89c0e40aca8d1a8738324f5f41d8be34f Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Wed, 5 Feb 2025 13:42:19 +0000 Subject: [PATCH] chore: fix directory naming --- src/Appwrite/Platform/Appwrite.php | 4 ++-- src/Appwrite/Platform/Modules/Storage/Module.php | 4 ++-- src/Appwrite/Platform/Modules/Storage/Services/Http.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Appwrite/Platform/Appwrite.php b/src/Appwrite/Platform/Appwrite.php index a075116d8b..438dc11a2d 100644 --- a/src/Appwrite/Platform/Appwrite.php +++ b/src/Appwrite/Platform/Appwrite.php @@ -3,7 +3,7 @@ namespace Appwrite\Platform; use Appwrite\Platform\Modules\Core; -use Appwrite\Platform\Modules\Tokens; +use Appwrite\Platform\Modules\Storage; use Utopia\Platform\Platform; class Appwrite extends Platform @@ -11,6 +11,6 @@ class Appwrite extends Platform public function __construct() { parent::__construct(new Core()); - $this->addModule(new Tokens\Module()); + $this->addModule(new Storage\Module()); } } diff --git a/src/Appwrite/Platform/Modules/Storage/Module.php b/src/Appwrite/Platform/Modules/Storage/Module.php index 9f49ef0111..59eb9e87a6 100644 --- a/src/Appwrite/Platform/Modules/Storage/Module.php +++ b/src/Appwrite/Platform/Modules/Storage/Module.php @@ -1,8 +1,8 @@