| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | 10 | public function __construct($query) |
|
| 26 | { |
||
| 27 | 10 | $this->compileValidPattern(); |
|
| 28 | |||
| 29 | 10 | if (!is_string($query)) { |
|
| 30 | 6 | throw new \InvalidArgumentException("Query must be a string"); |
|
| 31 | 4 | } elseif (!preg_match($this->valid_pattern, $query)) { |
|
| 32 | 3 | throw new \InvalidArgumentException("Query must conform to RFC3986 specification"); |
|
| 33 | } |
||
| 34 | 1 | } |
|
| 35 | |||
| 51 |