Skip to content

Commit 9df9f32

Browse files
author
Jon Baker
committed
Changing 'getenv()' to 'env()' in the sample config file
1 parent a988aaf commit 9df9f32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/config/config.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
|
2020
*/
2121

22-
'sid' => getenv('TWILIO_SID') ?: '',
22+
'sid' => env('TWILIO_SID') ?: '',
2323

2424
/*
2525
|--------------------------------------------------------------------------
@@ -30,7 +30,7 @@
3030
|
3131
*/
3232

33-
'token' => getenv('TWILIO_TOKEN') ?: '',
33+
'token' => env('TWILIO_TOKEN') ?: '',
3434

3535
/*
3636
|--------------------------------------------------------------------------
@@ -41,7 +41,7 @@
4141
|
4242
*/
4343

44-
'from' => getenv('TWILIO_FROM') ?: '',
44+
'from' => env('TWILIO_FROM') ?: '',
4545
],
4646
],
4747
],

0 commit comments

Comments
 (0)