Skip to content

Commit

Permalink
use Spatie\Async\Task
Browse files Browse the repository at this point in the history
  • Loading branch information
programarivm committed Jan 12, 2025
1 parent b301156 commit 025d9ff
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Command/AbstractBlockingCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace ChessServer\Command;

use Spatie\NonBlocking\Pool;
use Spatie\Async\Pool;

abstract class AbstractBlockingCommand extends AbstractCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/AbstractBlockingTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace ChessServer\Command;

use Spatie\NonBlocking\Task;
use Spatie\Async\Task;

abstract class AbstractBlockingTask extends Task
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/Auth/Cli.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use ChessServer\Command\Auth\Blocking\TotpRefreshCommand;
use ChessServer\Command\Auth\Blocking\TotpSignInCommand;
use ChessServer\Command\Auth\Blocking\TotpSignUpCommand;
use Spatie\NonBlocking\Pool;
use Spatie\Async\Pool;

class Cli extends AbstractCli
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/Binary/Cli.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use ChessServer\Command\AbstractCli;
use ChessServer\Command\Binary\Blocking\ImageCommand;
use Spatie\NonBlocking\Pool;
use Spatie\Async\Pool;

class Cli extends AbstractCli
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/Data/Cli.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use ChessServer\Command\Data\Blocking\OpeningCommand;
use ChessServer\Command\Data\Blocking\RankingCommand;
use ChessServer\Command\Data\Blocking\SearchCommand;
use Spatie\NonBlocking\Pool;
use Spatie\Async\Pool;

class Cli extends AbstractCli
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/Game/Cli.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
use ChessServer\Command\Game\NonBlocking\StartCommand;
use ChessServer\Command\Game\NonBlocking\TakebackCommand;
use ChessServer\Command\Game\NonBlocking\UndoCommand;
use Spatie\NonBlocking\Pool;
use Spatie\Async\Pool;

class Cli extends AbstractCli
{
Expand Down

0 comments on commit 025d9ff

Please sign in to comment.