1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | namespace PHPStan\BetterReflection\SourceLocator\Exception; |
6: | |
7: | use LogicException; |
8: | |
9: | class EvaledClosureCannotBeLocated extends LogicException |
10: | { |
11: | public static function create(): self |
12: | { |
13: | return new self('Evaled closure cannot be located'); |
14: | } |
15: | } |
16: |