| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function __construct(HttpAdapterInterface $adapter, $api_key, $api_secret, $international_prefix = '+66') |
||
| 15 | { |
||
| 16 | $this->validateOptions(array( |
||
| 17 | 'api_key' => $api_key, |
||
| 18 | 'api_secret' => $api_secret, |
||
| 19 | 'international_prefix' => $international_prefix, |
||
| 20 | )); |
||
| 21 | |||
| 22 | parent::__construct($adapter, $api_key, $api_secret, $international_prefix); |
||
| 23 | } |
||
| 24 | |||
| 39 |