| Conditions | 4 |
| Paths | 4 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function __construct(array $options = array()) |
||
| 36 | { |
||
| 37 | if (!isset($options['url'])) { |
||
| 38 | throw new Exception\InvalidArgumentException('Url key in options argument required'); |
||
| 39 | } |
||
| 40 | |||
| 41 | $this->url = $options['url']; |
||
| 42 | |||
| 43 | if (isset($options['vars'])) { |
||
| 44 | $this->vars = is_array($options['vars']) ? $options['vars'] : array($options['vars']); |
||
| 45 | } |
||
| 46 | } |
||
| 47 | |||
| 66 |