Skip to content

Commit

Permalink
Added default value as null in config.
Browse files Browse the repository at this point in the history
  • Loading branch information
gent-fella-health committed Dec 17, 2020
1 parent 9399529 commit a6bf044
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Config/larasheets.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
| Google application name
|----------------------------------------------------------------------------
*/
'application_name' => env('GOOGLE_APPLICATION_NAME', ''),
'application_name' => env('GOOGLE_APPLICATION_NAME', null),

/*
|----------------------------------------------------------------------------
Expand All @@ -17,9 +17,9 @@
| https://developers.google.com/console
|
*/
'client_id' => env('GOOGLE_CLIENT_ID', ''),
'client_secret' => env('GOOGLE_CLIENT_SECRET', ''),
'redirect_uri' => env('GOOGLE_REDIRECT', ''),
'client_id' => env('GOOGLE_CLIENT_ID', null),
'client_secret' => env('GOOGLE_CLIENT_SECRET', null),
'redirect_uri' => env('GOOGLE_REDIRECT', null),
'scopes' => [\Google_Service_Sheets::DRIVE, \Google_Service_Sheets::SPREADSHEETS],
'access_type' => 'online',
'approval_prompt' => 'auto',
Expand All @@ -33,7 +33,7 @@
| a Server key, and not a Browser key.
|
*/
'developer_key' => env('GOOGLE_DEVELOPER_KEY', ''),
'developer_key' => env('GOOGLE_DEVELOPER_KEY', null),

/*
|----------------------------------------------------------------------------
Expand All @@ -54,7 +54,7 @@
* Path to service account json file. You can also pass the credentials as an array
* instead of a file path.
*/
'file' => env('GOOGLE_SERVICE_ACCOUNT_JSON_LOCATION'),
'file' => env('GOOGLE_SERVICE_ACCOUNT_JSON_LOCATION', null),
],

/*
Expand Down

0 comments on commit a6bf044

Please sign in to comment.