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 MetricsController extends AbstractController
{
#[Route('/metrics', name: 'metrics')]
public function home(): Response
return $this->render('metrics/home.html.twig');
}