| Total Complexity | 0 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 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; |
||
|
|
|||
| 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 { |
||
| 30 | update as actionUpdate; |
||
| 31 | } |
||
| 32 | |||
| 33 | use Feedback\ActionTurn { |
||
| 34 | turn as actionTurn; |
||
| 35 | } |
||
| 36 | |||
| 37 | use Feedback\ActionDelete { |
||
| 38 | delete as actionDelete; |
||
| 39 | } |
||
| 40 | |||
| 41 | use Feedback\ActionSettings { |
||
| 42 | settings as actionSettings; |
||
| 43 | } |
||
| 45 |