From 1276040dcc9c5740962aca602e2e3fd7a439923c Mon Sep 17 00:00:00 2001 From: programarivm Date: Fri, 11 Oct 2024 21:27:32 +0200 Subject: [PATCH] Refactored ChessServer\Command\Auth\Async --- src/Command/Auth/Async/TotpRefreshCommand.php | 4 ++-- src/Command/Auth/Async/TotpSignInCommand.php | 4 ++-- src/Command/Auth/Async/TotpSignUpCommand.php | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Command/Auth/Async/TotpRefreshCommand.php b/src/Command/Auth/Async/TotpRefreshCommand.php index 5fd21eb7..567c28cc 100644 --- a/src/Command/Auth/Async/TotpRefreshCommand.php +++ b/src/Command/Auth/Async/TotpRefreshCommand.php @@ -2,10 +2,10 @@ namespace ChessServer\Command\Auth\Async; -use ChessServer\Command\AbstractCommand; +use ChessServer\Command\AbstractAsyncCommand; use ChessServer\Socket\AbstractSocket; -class TotpRefreshCommand extends AbstractCommand +class TotpRefreshCommand extends AbstractAsyncCommand { public function __construct() { diff --git a/src/Command/Auth/Async/TotpSignInCommand.php b/src/Command/Auth/Async/TotpSignInCommand.php index fa773f16..6cabf876 100644 --- a/src/Command/Auth/Async/TotpSignInCommand.php +++ b/src/Command/Auth/Async/TotpSignInCommand.php @@ -2,10 +2,10 @@ namespace ChessServer\Command\Auth\Async; -use ChessServer\Command\AbstractCommand; +use ChessServer\Command\AbstractAsyncCommand; use ChessServer\Socket\AbstractSocket; -class TotpSignInCommand extends AbstractCommand +class TotpSignInCommand extends AbstractAsyncCommand { public function __construct() { diff --git a/src/Command/Auth/Async/TotpSignUpCommand.php b/src/Command/Auth/Async/TotpSignUpCommand.php index b570d96b..93914e6a 100644 --- a/src/Command/Auth/Async/TotpSignUpCommand.php +++ b/src/Command/Auth/Async/TotpSignUpCommand.php @@ -2,10 +2,10 @@ namespace ChessServer\Command\Auth\Async; -use ChessServer\Command\AbstractCommand; +use ChessServer\Command\AbstractAsyncCommand; use ChessServer\Socket\AbstractSocket; -class TotpSignUpCommand extends AbstractCommand +class TotpSignUpCommand extends AbstractAsyncCommand { public function __construct() {