Skip to content

Commit 618e81d

Browse files
palpalaniactions-user
authored andcommitted
Fix styling
1 parent 923a32e commit 618e81d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SqsQueueReaderServiceProvider.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
namespace palPalani\SqsQueueReader;
44

5+
use Aws\Exception\AwsException;
6+
use Aws\Sqs\SqsClient;
57
use Illuminate\Queue\Events\JobProcessed;
68
use Illuminate\Support\Facades\Config;
79
use Illuminate\Support\Facades\Log;
810
use Illuminate\Support\Facades\Queue;
911
use Illuminate\Support\ServiceProvider;
1012
use palPalani\SqsQueueReader\Sqs\Connector;
11-
use Aws\Sqs\SqsClient;
12-
use Aws\Exception\AwsException;
1313

1414
class SqsQueueReaderServiceProvider extends ServiceProvider
1515
{
@@ -45,7 +45,7 @@ public function boot(): void
4545
$client = new SqsClient([
4646
//'profile' => 'default',
4747
'region' => Config::get('queue.connections.sqs-json.region'),
48-
'version' => '2012-11-05'
48+
'version' => '2012-11-05',
4949
]);
5050

5151
foreach ($batchIds as $batch) {

0 commit comments

Comments
 (0)