Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | trait LikeRelationship |
||
17 | { |
||
18 | /** |
||
19 | * Like has one relationship with the model. |
||
20 | * |
||
21 | * @return MorphOne |
||
22 | */ |
||
23 | public function likeOne(): MorphOne |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Like has many relationship with the model. |
||
30 | * |
||
31 | * @return MorphMany |
||
32 | */ |
||
33 | public function likes(): MorphMany |
||
38 |