| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function register() |
||
| 30 | { |
||
| 31 | $this->app->singleton(PrestashopWebService::class, function () { |
||
| 32 | return new PrestashopWebService( |
||
| 33 | config('prestashop-webservice.url'), |
||
| 34 | config('prestashop-webservice.token'), |
||
| 35 | config('prestashop-webservice.debug') |
||
| 36 | ); |
||
| 37 | }); |
||
| 38 | |||
| 39 | $this->app->alias(PrestashopWebService::class, 'prestashop-webservice'); |
||
| 40 | } |
||
| 41 | |||
| 47 |