Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| AboutController | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| about | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Controller\Front; |
| 4 | |
| 5 | use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
| 6 | use Symfony\Component\HttpFoundation\Response; |
| 7 | use Symfony\Component\Routing\Attribute\Route; |
| 8 | |
| 9 | class AboutController extends AbstractController |
| 10 | { |
| 11 | #[Route("/about", name: "about")] |
| 12 | public function about(): Response |
| 13 | { |
| 14 | return $this->render('front/about.html.twig'); |
| 15 | } |
| 16 | } |