Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
6 | class Post extends AdminController{ |
||
7 | |||
8 | /** |
||
9 | * page for new post |
||
10 | */ |
||
11 | public function new(){ |
||
14 | } |
||
15 | |||
16 | /** |
||
17 | * Lists all the posts |
||
18 | */ |
||
19 | public function list(){ |
||
21 | |||
22 | } |
||
23 | |||
24 | /** |
||
25 | * Shows the post to modify and update |
||
26 | * @param $idPost |
||
27 | */ |
||
28 | public function modify($idPost){ |
||
32 | } |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.