Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
7 | #[Attribute(Attribute::TARGET_PROPERTY)] |
||
8 | class Collection |
||
9 | { |
||
10 | private string $class; |
||
11 | |||
12 | /** |
||
13 | * @param string $class |
||
14 | */ |
||
15 | 1 | public function __construct(string $class) |
|
18 | 1 | } |
|
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | */ |
||
23 | 1 | public function getClass(): string |
|
28 |