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

Apps/Controller/Admin/Feedback.php (3 issues)

1
<?php
2
3
4
namespace Apps\Controller\Admin;
5
6
use Extend\Core\Arch\AdminController as Controller;
7
8
/**
9
 * Class Feedback. Control and manage feedback request and answers.
10
 * @package Apps\Controller\Admin
11
 */
12
class Feedback extends Controller
13
{
14
    const VERSION = '1.0.1';
15
    const ITEM_PER_PAGE = 10;
16
17
    public $type = 'app';
18
19
    use Feedback\Boot;
0 ignored issues
show
The trait Apps\Controller\Admin\Feedback\Boot requires some properties which are not provided by Apps\Controller\Admin\Feedback: $id, $relevance, $message, $created_at, $feedback_id
Loading history...
20
21
    use Feedback\ActionIndex {
22
        index as actionIndex;
23
    }
24
25
    use Feedback\ActionRead {
26
        read as actionRead;
27
    }
28
29
    use Feedback\ActionUpdate {
0 ignored issues
show
The trait Apps\Controller\Admin\Feedback\ActionUpdate requires some properties which are not provided by Apps\Controller\Admin\Feedback: $post, $id
Loading history...
30
        update as actionUpdate;
31
    }
32
33
    use Feedback\ActionTurn {
34
        turn as actionTurn;
35
    }
36
37
    use Feedback\ActionDelete {
0 ignored issues
show
The trait Apps\Controller\Admin\Feedback\ActionDelete requires some properties which are not provided by Apps\Controller\Admin\Feedback: $id, $feedback_id
Loading history...
38
        delete as actionDelete;
39
    }
40
41
    use Feedback\ActionSettings {
42
        settings as actionSettings;
43
    }
44
}
45