| 1: | <?php | 
| 2: | |
| 3: | declare(strict_types=1); | 
| 4: | |
| 5: | namespace PHPStan\BetterReflection\Identifier\Exception; | 
| 6: | |
| 7: | use InvalidArgumentException; | 
| 8: | |
| 9: | use function sprintf; | 
| 10: | |
| 11: | class InvalidIdentifierName extends InvalidArgumentException | 
| 12: | { | 
| 13: | public static function fromInvalidName(string $name): self | 
| 14: | { | 
| 15: | return new self(sprintf('Invalid identifier name "%s"', $name)); | 
| 16: | } | 
| 17: | } | 
| 18: |