dockerize project #3

Merged
csimonis merged 40 commits from feature/build into main 2024-12-04 17:37:10 +00:00
Showing only changes of commit 7e758f4c12 - Show all commits

17
src/Controller/test.php Normal file
View File

@ -0,0 +1,17 @@
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
class test extends AbstractController
{
#[Route(path: '/test', name: 'app_test', methods: Request::METHOD_GET)]
public function test(): Response
{
return new Response('test');
}
}