Skip to content

Commit

Permalink
Refactored ChessServer\Command\Auth\Async
Browse files Browse the repository at this point in the history
  • Loading branch information
programarivm committed Oct 11, 2024
1 parent 9fda8cc commit 1276040
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Command/Auth/Async/TotpRefreshCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down
4 changes: 2 additions & 2 deletions src/Command/Auth/Async/TotpSignInCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down
4 changes: 2 additions & 2 deletions src/Command/Auth/Async/TotpSignUpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit 1276040

Please sign in to comment.