1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | namespace PHPStan\BetterReflection\SourceLocator\Exception; |
6: | |
7: | use RuntimeException; |
8: | |
9: | /** |
10: | * This is removed in PR #236 - this should never have existed, but leaving here for BC. This exception is never thrown |
11: | * so you should remove it from your code. |
12: | * |
13: | * You were probably looking to catch \PHPStan\BetterReflection\Reflector\Exception\IdentifierNotFound instead. |
14: | * |
15: | * @deprecated You're probably looking for `IdentifierNotFound` |
16: | * |
17: | * @see \PHPStan\BetterReflection\Reflector\Exception\IdentifierNotFound |
18: | */ |
19: | class FunctionUndefined extends RuntimeException |
20: | { |
21: | } |
22: |