Skip to content

Commit 5b7d92f

Browse files
committed
format fix
1 parent 2b0d755 commit 5b7d92f

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

config/laravel-echo-api-gateway.php

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?php
22

33
return [
4+
45
'connection' => [
5-
'key' => env('AWS_ACCESS_KEY_ID'),
6-
'secret' => env('AWS_SECRET_ACCESS_KEY'),
7-
'token' => env('AWS_SESSION_TOKEN'),
8-
'region' => env('AWS_DEFAULT_REGION", "us-east-1'),
6+
'key' => env('AWS_ACCESS_KEY_ID'),
7+
'secret' => env('AWS_SECRET_ACCESS_KEY'),
8+
'token' => env('AWS_SESSION_TOKEN'),
9+
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
910
],
1011

1112
'api' => [
@@ -15,9 +16,7 @@
1516

1617
'dynamodb' => [
1718
'endpoint' => env('DYNAMODB_ENDPOINT'),
18-
'table' => env(
19-
'LARAVEL_ECHO_API_GATEWAY_DYNAMODB_TABLE',
20-
'connections'
21-
),
19+
'table' => env('LARAVEL_ECHO_API_GATEWAY_DYNAMODB_TABLE', 'connections'),
2220
],
21+
2322
];

0 commit comments

Comments
 (0)