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