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