1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | namespace PHPStan\BetterReflection\Reflection\Exception; |
6: | |
7: | use RuntimeException; |
8: | |
9: | use function sprintf; |
10: | |
11: | class PropertyIsNotStatic extends RuntimeException |
12: | { |
13: | public static function fromName(string $propertyName): self |
14: | { |
15: | return new self(sprintf('Property "%s" is not static', $propertyName)); |
16: | } |
17: | } |
18: |