| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | 2 | public function __construct($options = array()) |
|
| 26 | { |
||
| 27 | 2 | parent::__construct($options); |
|
| 28 | 2 | if (!isset($options[self::KEY_CLIENT_METHOD])) { |
|
| 29 | 1 | throw new Exception('Client method missing from plugin options.'); |
|
| 30 | } |
||
| 31 | 1 | $this->clientMethod = (string)$options[self::KEY_CLIENT_METHOD]; |
|
| 32 | 1 | } |
|
| 33 | |||
| 47 |