| Conditions | 4 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function __construct(array $options = []) |
||
| 20 | { |
||
| 21 | if (!empty($options)) { |
||
| 22 | if (isset($options['key']) && isset($options['secret'])) { |
||
| 23 | $this->key = $options['key']; |
||
| 24 | $this->secret = $options['secret']; |
||
| 25 | } else { |
||
| 26 | throw new RuntimeException('Need to setup array[\'key\'=>\'\',\'secret\'=>\'\']'); |
||
| 27 | } |
||
| 28 | } |
||
| 29 | } |
||
| 30 | |||
| 73 |