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