Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
19 | trait RestResourceCreate |
||
20 | { |
||
21 | /** |
||
22 | * Before lifecycle method for create method. |
||
23 | * |
||
24 | * @param RestDtoInterface $dto |
||
25 | * @param EntityInterface $entity |
||
26 | */ |
||
27 | public function beforeCreate(RestDtoInterface $dto, EntityInterface $entity): void |
||
28 | { |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * After lifecycle method for create method. |
||
33 | * |
||
34 | * @param RestDtoInterface $dto |
||
35 | * @param EntityInterface $entity |
||
36 | */ |
||
37 | public function afterCreate(RestDtoInterface $dto, EntityInterface $entity): void |
||
38 | { |
||
39 | } |
||
41 |