| 1: | <?php declare(strict_types = 1); |
| 2: | |
| 3: | namespace PHPStan\Reflection; |
| 4: | |
| 5: | use PHPStan\Turbo\ReferencedByTurboExtension; |
| 6: | use PHPStan\Type\Generic\TemplateTypeVarianceMap; |
| 7: | use PHPStan\Type\Type; |
| 8: | |
| 9: | |
| 10: | |
| 11: | |
| 12: | |
| 13: | |
| 14: | |
| 15: | |
| 16: | |
| 17: | |
| 18: | |
| 19: | |
| 20: | |
| 21: | |
| 22: | |
| 23: | #[ReferencedByTurboExtension(key: 'extendedParametersAcceptor')] |
| 24: | interface ExtendedParametersAcceptor extends ParametersAcceptor |
| 25: | { |
| 26: | |
| 27: | |
| 28: | public function getParameters(): array; |
| 29: | |
| 30: | public function getPhpDocReturnType(): Type; |
| 31: | |
| 32: | public function getNativeReturnType(): Type; |
| 33: | |
| 34: | public function getCallSiteVarianceMap(): TemplateTypeVarianceMap; |
| 35: | |
| 36: | } |
| 37: | |