21 lines
479 B
PHP
21 lines
479 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Controller\api\Check;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
#[Route(path: '/api/v1/check', name: 'api_check_')]
|
|
|
|
class EasyCheckController extends AbstractController
|
|
{
|
|
#[Route('/easy-check')]
|
|
public function index(): Response
|
|
{
|
|
return $this->render('easy_check/index.html.twig');
|
|
}
|
|
}
|