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