Skip to content

Commit 5b682a0

Browse files
Apply Laravel code style to config
Co-authored-by: Clem Blanco <[email protected]>
1 parent 25f3214 commit 5b682a0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

config/firebase.php

+16
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,18 @@
88
* Default Firebase project
99
* ------------------------------------------------------------------------
1010
*/
11+
1112
'default' => env('FIREBASE_PROJECT', 'app'),
1213

1314
/*
1415
* ------------------------------------------------------------------------
1516
* Firebase project configurations
1617
* ------------------------------------------------------------------------
1718
*/
19+
1820
'projects' => [
1921
'app' => [
22+
2023
/*
2124
* ------------------------------------------------------------------------
2225
* Credentials / Service Account
@@ -46,6 +49,7 @@
4649
* first time you try to access a component of the Firebase Admin SDK.
4750
*
4851
*/
52+
4953
'credentials' => env('FIREBASE_CREDENTIALS', env('GOOGLE_APPLICATION_CREDENTIALS')),
5054

5155
/*
@@ -65,6 +69,7 @@
6569
*/
6670

6771
'database' => [
72+
6873
/*
6974
* In most of the cases the project ID defined in the credentials file
7075
* determines the URL of your project's Realtime Database. If the
@@ -76,6 +81,7 @@
7681
* Please make sure that you use a full URL like, for example,
7782
* https://my-project-id.firebaseio.com
7883
*/
84+
7985
'url' => env('FIREBASE_DATABASE_URL'),
8086

8187
/*
@@ -85,12 +91,15 @@
8591
*
8692
* https://firebase.google.com/docs/database/admin/start#authenticate-with-limited-privileges
8793
*/
94+
8895
// 'auth_variable_override' => [
8996
// 'uid' => 'my-service-worker'
9097
// ],
98+
9199
],
92100

93101
'dynamic_links' => [
102+
94103
/*
95104
* Dynamic links can be built with any URL prefix registered on
96105
*
@@ -102,6 +111,7 @@
102111
* The value must be a valid domain, for example,
103112
* https://example.page.link
104113
*/
114+
105115
'default_domain' => env('FIREBASE_DYNAMIC_LINKS_DEFAULT_DOMAIN'),
106116
],
107117

@@ -112,6 +122,7 @@
112122
*/
113123

114124
'storage' => [
125+
115126
/*
116127
* Your project's default storage bucket usually uses the project ID
117128
* as its name. If you have multiple storage buckets and want to
@@ -120,6 +131,7 @@
120131
*/
121132

122133
'default_bucket' => env('FIREBASE_STORAGE_DEFAULT_BUCKET'),
134+
123135
],
124136

125137
/*
@@ -162,11 +174,14 @@
162174
*
163175
* Behavior of the HTTP Client performing the API requests
164176
*/
177+
165178
'http_client_options' => [
179+
166180
/*
167181
* Use a proxy that all API requests should be passed through.
168182
* (default: none)
169183
*/
184+
170185
'proxy' => env('FIREBASE_HTTP_CLIENT_PROXY'),
171186

172187
/*
@@ -176,6 +191,7 @@
176191
* The default time out can be reviewed at
177192
* https://github.com/kreait/firebase-php/blob/6.x/src/Firebase/Http/HttpClientOptions.php
178193
*/
194+
179195
'timeout' => env('FIREBASE_HTTP_CLIENT_TIMEOUT'),
180196

181197
'guzzle_middlewares' => [],

0 commit comments

Comments
 (0)