Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelaguiar committed Aug 24, 2024
1 parent f13c2b2 commit 2b0d755
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions config/laravel-echo-api-gateway.php
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<?php

return [
"connection" => [
"key" => env("AWS_ACCESS_KEY_ID"),
"secret" => env("AWS_SECRET_ACCESS_KEY"),
"token" => env("AWS_SESSION_TOKEN"),
"region" => env("AWS_DEFAULT_REGION", "us-east-1"),
'connection' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'token' => env('AWS_SESSION_TOKEN'),
'region' => env('AWS_DEFAULT_REGION", "us-east-1'),
],

"api" => [
"id" => env("LARAVEL_ECHO_API_GATEWAY_API_ID"),
"stage" => env("LARAVEL_ECHO_API_GATEWAY_API_STAGE"),
'api' => [
'id' => env('LARAVEL_ECHO_API_GATEWAY_API_ID'),
'stage' => env('LARAVEL_ECHO_API_GATEWAY_API_STAGE'),
],

"dynamodb" => [
"endpoint" => env("DYNAMODB_ENDPOINT"),
"table" => env(
"LARAVEL_ECHO_API_GATEWAY_DYNAMODB_TABLE",
"connections"
'dynamodb' => [
'endpoint' => env('DYNAMODB_ENDPOINT'),
'table' => env(
'LARAVEL_ECHO_API_GATEWAY_DYNAMODB_TABLE',
'connections'
),
],
];

0 comments on commit 2b0d755

Please sign in to comment.