We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a988aaf commit 9df9f32Copy full SHA for 9df9f32
src/config/config.php
@@ -19,7 +19,7 @@
19
|
20
*/
21
22
- 'sid' => getenv('TWILIO_SID') ?: '',
+ 'sid' => env('TWILIO_SID') ?: '',
23
24
/*
25
|--------------------------------------------------------------------------
@@ -30,7 +30,7 @@
30
31
32
33
- 'token' => getenv('TWILIO_TOKEN') ?: '',
+ 'token' => env('TWILIO_TOKEN') ?: '',
34
35
36
@@ -41,7 +41,7 @@
41
42
43
44
- 'from' => getenv('TWILIO_FROM') ?: '',
+ 'from' => env('TWILIO_FROM') ?: '',
45
],
46
47
0 commit comments