| 1 | <?php |
||
| 22 | class RuleDelegate extends Rule implements Delegate |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @param Environment $env |
||
| 26 | */ |
||
| 27 | public function boot(Environment $env): void |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | public function getRuleName(): string |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return bool |
||
| 52 | */ |
||
| 53 | public function isKept(): bool |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @return null|string |
||
| 60 | */ |
||
| 61 | public function getDelegate(): ?string |
||
| 71 | } |
||
| 72 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.