1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace ApiGen\Info; |
4: | |
5: | use ApiGen\Info\Traits\HasLineLocation; |
6: | use PHPStan\PhpDocParser\Ast\Type\TypeNode; |
7: | |
8: | |
9: | class AliasInfo |
10: | { |
11: | use HasLineLocation; |
12: | |
13: | |
14: | public function __construct( |
15: | public string $name, |
16: | public TypeNode $type, |
17: | ) { |
18: | } |
19: | } |
20: |