Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | #[Attribute(Attribute::TARGET_PARAMETER | Attribute::TARGET_PROPERTY)] |
||
18 | final class Set |
||
19 | { |
||
20 | /** @var ''|class-string<T> */ |
||
|
|||
21 | public $interface; |
||
22 | |||
23 | /** @var string */ |
||
24 | public $name; |
||
25 | |||
26 | /** |
||
27 | * @param ''|class-string<T> $interface |
||
28 | */ |
||
29 | public function __construct(string $interface, string $name = '') |
||
35 |