1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | namespace PHPStan\BetterReflection\SourceLocator\Type\Composer\Factory\Exception; |
6: | |
7: | use UnexpectedValueException; |
8: | |
9: | use function sprintf; |
10: | |
11: | final class MissingComposerJson extends UnexpectedValueException implements Exception |
12: | { |
13: | public static function inProjectPath(string $path): self |
14: | { |
15: | return new self(sprintf('Could not locate a "composer.json" file in "%s"', $path)); |
16: | } |
17: | } |
18: |