Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| MainController | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| index | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Controller\Back; |
| 4 | |
| 5 | use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
| 6 | use Symfony\Component\HttpFoundation\Response; |
| 7 | use Symfony\Component\Routing\Annotation\Route; |
| 8 | |
| 9 | class MainController extends AbstractController |
| 10 | { |
| 11 | /** |
| 12 | * @Route("/back/main", name="app_back_default") |
| 13 | */ |
| 14 | public function index(): Response |
| 15 | { |
| 16 | return $this->render('back/main/index.html.twig', [ |
| 17 | |
| 18 | ]); |
| 19 | } |
| 20 | } |