Skip to content

Commit 982f45e

Browse files
committed
cs-fix
1 parent 7cfd9c3 commit 982f45e

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

src/Commands/QueueWork.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
use CodeIgniter\CLI\BaseCommand;
66
use CodeIgniter\CLI\CLI;
7-
use Exception;
87
use CodeIgniter\Queue\Config\Queue as QueueConfig;
98
use CodeIgniter\Queue\Entities\QueueJob;
9+
use Exception;
1010
use Throwable;
1111

1212
class QueueWork extends BaseCommand

src/Handlers/PredisHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
use CodeIgniter\Exceptions\CriticalError;
66
use CodeIgniter\I18n\Time;
7-
use Exception;
87
use CodeIgniter\Queue\Config\Queue as QueueConfig;
98
use CodeIgniter\Queue\Entities\QueueJob;
109
use CodeIgniter\Queue\Enums\Status;
1110
use CodeIgniter\Queue\Interfaces\QueueInterface;
1211
use CodeIgniter\Queue\Payload;
12+
use Exception;
1313
use Predis\Client;
1414
use Throwable;
1515

tests/DatabaseHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
namespace Tests;
44

5-
use CodeIgniter\Test\ReflectionHelper;
6-
use Exception;
75
use CodeIgniter\Queue\Entities\QueueJob;
86
use CodeIgniter\Queue\Enums\Status;
97
use CodeIgniter\Queue\Exceptions\QueueException;
108
use CodeIgniter\Queue\Handlers\DatabaseHandler;
119
use CodeIgniter\Queue\Models\QueueJobFailedModel;
10+
use CodeIgniter\Test\ReflectionHelper;
11+
use Exception;
1212
use ReflectionException;
1313
use Tests\Support\Config\Queue as QueueConfig;
1414
use Tests\Support\Database\Seeds\TestDatabaseQueueSeeder;

tests/PredisHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
namespace ThirdParty\queue\tests;
44

55
use CodeIgniter\I18n\Time;
6-
use CodeIgniter\Test\ReflectionHelper;
7-
use Exception;
86
use CodeIgniter\Queue\Entities\QueueJob;
97
use CodeIgniter\Queue\Exceptions\QueueException;
108
use CodeIgniter\Queue\Handlers\PredisHandler;
9+
use CodeIgniter\Test\ReflectionHelper;
10+
use Exception;
1111
use ReflectionException;
1212
use Tests\Support\Config\Queue as QueueConfig;
1313
use Tests\Support\Database\Seeds\TestRedisQueueSeeder;

tests/RedisHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
namespace Tests;
44

55
use CodeIgniter\I18n\Time;
6-
use CodeIgniter\Test\ReflectionHelper;
7-
use Exception;
86
use CodeIgniter\Queue\Entities\QueueJob;
97
use CodeIgniter\Queue\Exceptions\QueueException;
108
use CodeIgniter\Queue\Handlers\RedisHandler;
9+
use CodeIgniter\Test\ReflectionHelper;
10+
use Exception;
1111
use Tests\Support\Config\Queue as QueueConfig;
1212
use Tests\Support\Database\Seeds\TestRedisQueueSeeder;
1313
use Tests\Support\TestCase;

tests/_support/Jobs/Failure.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Tests\Support\Jobs;
44

5-
use Exception;
65
use CodeIgniter\Queue\BaseJob;
76
use CodeIgniter\Queue\Interfaces\JobInterface;
7+
use Exception;
88

99
class Failure extends BaseJob implements JobInterface
1010
{

0 commit comments

Comments
 (0)