1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace ApiGen\Info\Expr; |
4: | |
5: | use ApiGen\Info\ExprInfo; |
6: | |
7: | |
8: | class PropertyFetchExprInfo implements ExprInfo |
9: | { |
10: | public function __construct( |
11: | public ExprInfo $expr, |
12: | public ExprInfo|string $property, |
13: | ) { |
14: | } |
15: | } |
16: | |