| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | public function register() |
||
| 51 | { |
||
| 52 | // Automatically apply the package configuration |
||
| 53 | $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'cpanel-api'); |
||
| 54 | |||
| 55 | // Register the main class to use with the facade |
||
| 56 | $this->app->singleton('cpanel-api', function () { |
||
| 57 | return new CPanelApi; |
||
| 58 | }); |
||
| 59 | } |
||
| 60 | } |
||
| 61 |