| 1 | <?php |
||
| 19 | trait Manage |
||
| 20 | { |
||
| 21 | use BaseManage { |
||
| 22 | runInternal as traitRunInternal; |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @inheritdoc |
||
| 27 | * @param ElementInterface $element |
||
| 28 | */ |
||
| 29 | abstract protected function performAction(ElementInterface $element): bool; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @inheritdoc |
||
| 33 | * @param ElementInterface $element |
||
| 34 | * @return Model |
||
| 35 | */ |
||
| 36 | protected function runInternal(ElementInterface $element) |
||
| 37 | { |
||
| 38 | return $this->traitRunInternal($element); |
||
|
|
|||
| 39 | } |
||
| 40 | } |
||
| 41 |
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.