| 1: | <?php declare(strict_types = 1); |
| 2: | |
| 3: | namespace PHPStan\Rules\Exceptions; |
| 4: | |
| 5: | use PHPStan\Analyser\Scope; |
| 6: | |
| 7: | |
| 8: | interface ExceptionTypeResolver |
| 9: | { |
| 10: | |
| 11: | public function isCheckedException(string $className, Scope $scope): bool; |
| 12: | |
| 13: | } |
| 14: | |