| 1: | <?php | 
| 2: | |
| 3: | declare(strict_types=1); | 
| 4: | |
| 5: | namespace PHPStan\BetterReflection\Reflection\Exception; | 
| 6: | |
| 7: | use UnexpectedValueException; | 
| 8: | |
| 9: | use function sprintf; | 
| 10: | |
| 11: | class CircularReference extends UnexpectedValueException | 
| 12: | { | 
| 13: | public static function fromClassName(string $className): self | 
| 14: | { | 
| 15: | return new self(sprintf('Circular reference to class "%s"', $className)); | 
| 16: | } | 
| 17: | } | 
| 18: |