| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2.0078 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | 5 | public function __construct($config = '') |
|
| 20 | { |
||
| 21 | // Setting PayPal API Credentials |
||
| 22 | 5 | if (is_array($config)) { |
|
| 23 | $this->setConfig(); |
||
| 24 | } |
||
| 25 | |||
| 26 | 5 | $this->httpBodyParam = 'form_params'; |
|
| 27 | |||
| 28 | 5 | $this->options = []; |
|
| 29 | 5 | $this->options['headers'] = [ |
|
| 30 | 5 | 'Accept' => 'application/json', |
|
| 31 | 5 | 'Accept-Language' => $this->locale, |
|
| 32 | ]; |
||
| 63 |