1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\Type; |
4: | |
5: | /** @api */ |
6: | interface OperatorTypeSpecifyingExtension |
7: | { |
8: | |
9: | public function isOperatorSupported(string $operatorSigil, Type $leftSide, Type $rightSide): bool; |
10: | |
11: | public function specifyType(string $operatorSigil, Type $leftSide, Type $rightSide): Type; |
12: | |
13: | } |
14: |