| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class DashboardController extends AbstractController { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @Route("/") |
||
| 15 | */ |
||
| 16 | 1 | public function redirectToDashboard() { |
|
| 17 | 1 | return $this->redirectToRoute('dashboard'); |
|
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @Route("/dashboard", name="dashboard") |
||
| 22 | */ |
||
| 23 | 5 | public function dashboard(UserServiceProviderResolver $resolver, LinkStudentsHelper $linkStudentsHelper) { |
|
| 33 | ]); |
||
| 34 | } |
||
| 35 | } |