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