| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace PHPStan\BetterReflection\SourceLocator\Type\Composer\Psr; |
| 6: | |
| 7: | use PHPStan\BetterReflection\Identifier\Identifier; |
| 8: | |
| 9: | interface PsrAutoloaderMapping |
| 10: | { |
| 11: | /** @return list<string> */ |
| 12: | public function resolvePossibleFilePaths(Identifier $identifier): array; |
| 13: | |
| 14: | /** @return list<string> */ |
| 15: | public function directories(): array; |
| 16: | } |
| 17: |