for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class BaseController extends AbstractController
{
#[Route("/", name: "index")]
public function index(): Response
return $this->render('index.html.twig');
}
#[Route("/about", name: "about")]
public function about(): Response
return $this->render('about.html.twig');
#[Route("/report", name: "report")]
public function report(): Response
return $this->render('report.html.twig');
#[Route("/work", name: "work")]
public function work(): Response
return $this->render('work.html.twig');
#[Route("/api", name: "api")]
public function api(): Response
return $this->render('api.html.twig');
#[Route("/metrics", name: "metrics")]
public function metrics(): Response
return $this->render('metrics.html.twig');