1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\Reflection;
4:
5: use PHPStan\Type\Type;
6:
7: /** @api */
8: interface ParameterReflectionWithPhpDocs extends ParameterReflection
9: {
10:
11: public function getPhpDocType(): Type;
12:
13: public function getNativeType(): Type;
14:
15: public function getOutType(): ?Type;
16:
17: }
18: