| 1 | <?php |
||
| 21 | trait Manage |
||
| 22 | { |
||
| 23 | use BaseManage { |
||
| 24 | runInternal as traitRunInternal; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @inheritdoc |
||
| 29 | * @param ElementInterface $element |
||
| 30 | */ |
||
| 31 | abstract protected function performAction(ElementInterface $element): bool; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @inheritdoc |
||
| 35 | * @param ElementInterface $element |
||
| 36 | * @return ElementInterface |
||
| 37 | */ |
||
| 38 | protected function runInternal(ElementInterface $element) |
||
| 42 | } |
||
| 43 |