Skip to content

Commit

Permalink
Merge pull request #165 from jdavidbakr/master
Browse files Browse the repository at this point in the history
Changing 'getenv()' to 'env()' in the sample config file
  • Loading branch information
hannesvdvreken authored Mar 18, 2019
2 parents a988aaf + 9df9f32 commit 6154c0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
|
*/

'sid' => getenv('TWILIO_SID') ?: '',
'sid' => env('TWILIO_SID') ?: '',

/*
|--------------------------------------------------------------------------
Expand All @@ -30,7 +30,7 @@
|
*/

'token' => getenv('TWILIO_TOKEN') ?: '',
'token' => env('TWILIO_TOKEN') ?: '',

/*
|--------------------------------------------------------------------------
Expand All @@ -41,7 +41,7 @@
|
*/

'from' => getenv('TWILIO_FROM') ?: '',
'from' => env('TWILIO_FROM') ?: '',
],
],
],
Expand Down

0 comments on commit 6154c0e

Please sign in to comment.