Test Failed
Push — master ( e3c39f...fe570d )
by Mihail
07:20
created

Apps/Controller/Api/Comments.php (2 issues)

Labels
Severity
1
<?php
2
3
namespace Apps\Controller\Api;
4
5
use Extend\Core\Arch\ApiController;
6
7
/**
8
 * Class Comments. View and add comments and answers via json based ajax query's
9
 * @package Apps\Controller\Api
10
 */
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 {
0 ignored issues
show
The trait Apps\Controller\Api\Comments\ActionList requires the property $query which is not provided by Apps\Controller\Api\Comments.
Loading history...
20
        aList as actionList;
21
    }
22
23
    use Comments\ActionShowAnswer {
24
        showAnswers as actionShowanswers;
25
    }
26
27
    use Comments\ActionCount {
0 ignored issues
show
The trait Apps\Controller\Api\Comments\ActionCount requires the property $query which is not provided by Apps\Controller\Api\Comments.
Loading history...
28
        cnt as actionCount;
29
    }
30
}
31