Total Complexity | 5 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 89.47% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class UserFavs |
||
12 | { |
||
13 | protected $userID; |
||
14 | |||
15 | 4 | public function __construct($userID = null) |
|
16 | { |
||
17 | 4 | $this->userID = isset($userID) ? $userID : Auth::user()->user_id; |
|
18 | 4 | } |
|
19 | |||
20 | public function updateTechTipFav($tipID) |
||
22 | // |
||
23 | } |
||
24 | |||
25 | 4 | public function updateCustomerFav($custID) |
|
50 | } |
||
51 | } |
||
52 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.