| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class QuizController extends Controller |
||
| 8 | { |
||
| 9 | public function showIndexWelcome() |
||
| 10 | { |
||
| 11 | return view('index.welcome'); |
||
| 12 | } |
||
| 13 | |||
| 14 | public function showHostDashboard() |
||
| 17 | } |
||
| 18 | |||
| 19 | public function showQuestion() |
||
| 20 | { |
||
| 21 | return view('quiz_user.question'); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function showPin() |
||
| 25 | { |
||
| 26 | return view('quiz_user.pin'); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function enterQuizPin(Request $request) |
||
| 32 | } |
||
| 33 | } |
||
| 34 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.