1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\PhpDoc\Tag; |
4: | |
5: | |
6: | class DeprecatedTag |
7: | { |
8: | |
9: | public function __construct(private ?string $message) |
10: | { |
11: | } |
12: | |
13: | public function getMessage(): ?string |
14: | { |
15: | return $this->message; |
16: | } |
17: | |
18: | } |
19: | |