diff --git a/src/Appwrite/Platform/Modules/Account/Http/Account/MFA/Authenticators/Create.php b/src/Appwrite/Platform/Modules/Account/Http/Account/MFA/Authenticators/Create.php index a7bec0ec53..2d83599964 100644 --- a/src/Appwrite/Platform/Modules/Account/Http/Account/MFA/Authenticators/Create.php +++ b/src/Appwrite/Platform/Modules/Account/Http/Account/MFA/Authenticators/Create.php @@ -77,7 +77,6 @@ class Create extends Action ) ]) ->param('type', null, new WhiteList([Type::TOTP]), 'Type of authenticator. Must be `' . Type::TOTP . '`') - ->inject('requestTimestamp') ->inject('response') ->inject('project') ->inject('user') @@ -88,7 +87,6 @@ class Create extends Action public function action( string $type, - ?\DateTime $requestTimestamp, Response $response, Document $project, Document $user,