Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
15 | public function boot() |
||
16 | { |
||
17 | $this->app->when(FacebookChannel::class) |
||
18 | ->needs(Facebook::class) |
||
19 | ->give(static function () { |
||
20 | $facebook = new Facebook(config('services.facebook.page-token')); |
||
21 | |||
22 | return $facebook |
||
23 | ->setGraphApiVersion(config('services.facebook.version', '4.0')) |
||
24 | ->setSecret(config('services.facebook.app-secret')); |
||
25 | }); |
||
26 | } |
||
27 | } |
||
28 |