Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | public function boot() |
||
14 | { |
||
15 | $this->app->when(GlobeLabsSmsChannel::class) |
||
16 | ->needs(Client::class) |
||
17 | ->give(function () { |
||
18 | return new Client([ |
||
19 | 'headers' => [ |
||
20 | 'Content-Type' => 'application/json', |
||
21 | ], |
||
22 | 'verify' => config('broadcasting.connections.globe_labs_sms.verify_ssl', true), |
||
23 | ]); |
||
24 | }); |
||
25 | |||
26 | $this->loadLang(); |
||
27 | |||
28 | $this->publishLang(); |
||
29 | } |
||
30 | |||
44 |