Total Complexity | 0 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class Comments extends ApiController |
||
12 | { |
||
13 | |||
14 | // import action traits |
||
15 | use Comments\ActionAdd { |
||
16 | add as actionAdd; |
||
17 | } |
||
18 | |||
19 | use Comments\ActionList { |
||
|
|||
20 | aList as actionList; |
||
21 | } |
||
22 | |||
23 | use Comments\ActionShowAnswer { |
||
24 | showAnswers as actionShowanswers; |
||
25 | } |
||
26 | |||
27 | use Comments\ActionCount { |
||
28 | cnt as actionCount; |
||
29 | } |
||
31 |