Skip to content

Commit 8c62761

Browse files
authored
Update TextlocalServiceProvider.php
1 parent 620d6a4 commit 8c62761

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/TextlocalServiceProvider.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ public function boot()
1717
->needs(Textlocal::class)
1818
->give(
1919
function () {
20-
$textlocalConfig = config('services.sms.textlocal');
20+
$config = config('textlocal');
2121

2222
return new Textlocal(
23-
$textlocalConfig['username'],
24-
$textlocalConfig['hash'],
25-
$textlocalConfig['api_key']
23+
$config['username'],
24+
$config['hash'],
25+
$config['api_key']
2626
);
2727
}
2828
);

0 commit comments

Comments
 (0)