| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3.0261 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | 4 | public function __construct(string $link) |
|
| 18 | { |
||
| 19 | 4 | if (filter_var($link, FILTER_VALIDATE_URL) === false) { |
|
| 20 | throw new UnsupportedMediaValue($link, 'document', 'Link is not a valid URL'); |
||
| 21 | } |
||
| 22 | |||
| 23 | 4 | $extension = pathinfo($link, PATHINFO_EXTENSION); |
|
| 24 | |||
| 25 | 4 | if (! in_array($extension, static::SUPPORTED_EXTENSIONS)) { |
|
| 26 | 1 | throw new UnsupportedMediaValue($link, 'document', 'Only PDF documents are supported.'); |
|
| 27 | } |
||
| 28 | |||
| 29 | 3 | $this->link = $link; |
|
| 30 | } |
||
| 42 |