Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
18 | trait RestResourceFindOne |
||
19 | { |
||
20 | /** |
||
21 | * Before lifecycle method for findOne method. |
||
22 | * |
||
23 | * @param string $id |
||
24 | */ |
||
25 | public function beforeFindOne(string &$id): void |
||
26 | { |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * After lifecycle method for findOne method. |
||
31 | * |
||
32 | * @param string $id |
||
33 | * @param null|EntityInterface $entity |
||
34 | */ |
||
35 | public function afterFindOne(string &$id, EntityInterface $entity = null): void |
||
36 | { |
||
37 | } |
||
39 |