Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
18 | trait RestResourceSave |
||
19 | { |
||
20 | /** |
||
21 | * Before lifecycle method for save method. |
||
22 | * |
||
23 | * @param EntityInterface $entity |
||
24 | */ |
||
25 | public function beforeSave(EntityInterface $entity): void |
||
26 | { |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * After lifecycle method for save method. |
||
31 | * |
||
32 | * @param EntityInterface $entity |
||
33 | */ |
||
34 | public function afterSave(EntityInterface $entity): void |
||
35 | { |
||
36 | } |
||
38 |