Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 91.67% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class Document extends Component |
||
8 | { |
||
9 | protected const SUPPORTED_EXTENSIONS = ['pdf']; |
||
10 | |||
11 | /** |
||
12 | * Link to the document; e.g. https://URL |
||
13 | * Only PDF documents are supported. |
||
14 | */ |
||
15 | protected string $link; |
||
16 | |||
17 | 4 | public function __construct(string $link) |
|
30 | } |
||
31 | |||
32 | 2 | public function toArray(): array |
|
42 |