| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function register() |
||
| 29 | { |
||
| 30 | // Automatically apply the package configuration |
||
| 31 | $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'ifttt-webhook'); |
||
| 32 | |||
| 33 | // Register the main class to use with the facade |
||
| 34 | $this->app->singleton('IftttWebhook', function () { |
||
| 35 | return new IftttWebhookService; |
||
| 36 | }); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |