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