Skip to content

Commit

Permalink
cs-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Dec 15, 2023
1 parent 7cfd9c3 commit 982f45e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Commands/QueueWork.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use CodeIgniter\CLI\BaseCommand;
use CodeIgniter\CLI\CLI;
use Exception;
use CodeIgniter\Queue\Config\Queue as QueueConfig;
use CodeIgniter\Queue\Entities\QueueJob;
use Exception;
use Throwable;

class QueueWork extends BaseCommand
Expand Down
2 changes: 1 addition & 1 deletion src/Handlers/PredisHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

use CodeIgniter\Exceptions\CriticalError;
use CodeIgniter\I18n\Time;
use Exception;
use CodeIgniter\Queue\Config\Queue as QueueConfig;
use CodeIgniter\Queue\Entities\QueueJob;
use CodeIgniter\Queue\Enums\Status;
use CodeIgniter\Queue\Interfaces\QueueInterface;
use CodeIgniter\Queue\Payload;
use Exception;
use Predis\Client;
use Throwable;

Expand Down
4 changes: 2 additions & 2 deletions tests/DatabaseHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Tests;

use CodeIgniter\Test\ReflectionHelper;
use Exception;
use CodeIgniter\Queue\Entities\QueueJob;
use CodeIgniter\Queue\Enums\Status;
use CodeIgniter\Queue\Exceptions\QueueException;
use CodeIgniter\Queue\Handlers\DatabaseHandler;
use CodeIgniter\Queue\Models\QueueJobFailedModel;
use CodeIgniter\Test\ReflectionHelper;
use Exception;
use ReflectionException;
use Tests\Support\Config\Queue as QueueConfig;
use Tests\Support\Database\Seeds\TestDatabaseQueueSeeder;
Expand Down
4 changes: 2 additions & 2 deletions tests/PredisHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
namespace ThirdParty\queue\tests;

use CodeIgniter\I18n\Time;
use CodeIgniter\Test\ReflectionHelper;
use Exception;
use CodeIgniter\Queue\Entities\QueueJob;
use CodeIgniter\Queue\Exceptions\QueueException;
use CodeIgniter\Queue\Handlers\PredisHandler;
use CodeIgniter\Test\ReflectionHelper;
use Exception;
use ReflectionException;
use Tests\Support\Config\Queue as QueueConfig;
use Tests\Support\Database\Seeds\TestRedisQueueSeeder;
Expand Down
4 changes: 2 additions & 2 deletions tests/RedisHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
namespace Tests;

use CodeIgniter\I18n\Time;
use CodeIgniter\Test\ReflectionHelper;
use Exception;
use CodeIgniter\Queue\Entities\QueueJob;
use CodeIgniter\Queue\Exceptions\QueueException;
use CodeIgniter\Queue\Handlers\RedisHandler;
use CodeIgniter\Test\ReflectionHelper;
use Exception;
use Tests\Support\Config\Queue as QueueConfig;
use Tests\Support\Database\Seeds\TestRedisQueueSeeder;
use Tests\Support\TestCase;
Expand Down
2 changes: 1 addition & 1 deletion tests/_support/Jobs/Failure.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Tests\Support\Jobs;

use Exception;
use CodeIgniter\Queue\BaseJob;
use CodeIgniter\Queue\Interfaces\JobInterface;
use Exception;

class Failure extends BaseJob implements JobInterface
{
Expand Down

0 comments on commit 982f45e

Please sign in to comment.