for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Oc\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class IndexController extends AbstractController
{
/**
* @Route("/")
*/
public function index(): Response
return $this->render('index/index.html.twig');
}