| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function __construct() |
||
| 20 | { |
||
| 21 | BolRetailerClient::setDemoMode(config('bol-com-retailer.use_demo_mode')); |
||
| 22 | BolRetailerClient::setCredentials( |
||
| 23 | config('bol-com-retailer.client_id'), |
||
| 24 | config('bol-com-retailer.client_secret') |
||
| 25 | ); |
||
| 26 | |||
| 27 | $this->client = new BolComRetailerClient(); |
||
| 28 | } |
||
| 29 | |||
| 58 |