| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 37 | public function register() |
||
| 38 | { |
||
| 39 | // Merge the package configuration file with the application's published copy. |
||
| 40 | $this->mergeConfigFrom(__DIR__ . '/../config/sendinblue.php', 'sendinblue'); |
||
| 41 | |||
| 42 | // The singleton method binds a class or interface into the container |
||
| 43 | // that should only be resolved one time. Once a singleton binding is resolved, |
||
| 44 | // the same object instance will be returned on subsequent calls into the container |
||
| 45 | $this->app->singleton('sendinblue', function () { |
||
| 46 | return new Sendinblue(); |
||
| 47 | }); |
||
| 50 |