1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\PhpDoc\Tag; |
4: | |
5: | use PHPStan\Type\Type; |
6: | |
7: | |
8: | interface TypedTag |
9: | { |
10: | |
11: | public function getType(): Type; |
12: | |
13: | |
14: | |
15: | |
16: | public function withType(Type $type): self; |
17: | |
18: | } |
19: | |