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