Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
16 | class GenericType extends AtomicType |
||
17 | { |
||
18 | public AtomicType $base_type; |
||
19 | |||
20 | /** @var Type[] */ |
||
21 | public array $parameter_types; |
||
22 | |||
23 | /** |
||
24 | * GenericType constructor. |
||
25 | * @param AtomicType $base_type |
||
26 | * @param Type[] $parameter_types |
||
27 | */ |
||
28 | public function __construct(AtomicType $base_type, array $parameter_types) |
||
34 |