1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\Reflection; |
4: | |
5: | use PHPStan\Broker\Broker; |
6: | |
7: | /** |
8: | * @api |
9: | * @deprecated Inject PHPStan\Reflection\ReflectionProvider into the constructor instead |
10: | */ |
11: | interface BrokerAwareExtension |
12: | { |
13: | |
14: | public function setBroker(Broker $broker): void; |
15: | |
16: | } |
17: |