A new start
All checks were successful
/ ls (push) Successful in 25s

This commit is contained in:
lubiana 2024-06-10 19:16:55 +02:00
commit a32bf4ce7d
33 changed files with 7427 additions and 0 deletions

0
src/Controller/.gitignore vendored Normal file
View file

15
src/Controller/Home.php Normal file
View file

@ -0,0 +1,15 @@
<?php declare(strict_types=1);
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
final class Home
{
#[Route('/', name: 'home')]
public function home(): Response
{
return new Response('<h1>Halloo</h1>');
}
}

0
src/Entity/.gitignore vendored Normal file
View file

11
src/Kernel.php Normal file
View file

@ -0,0 +1,11 @@
<?php declare(strict_types=1);
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
final class Kernel extends BaseKernel
{
use MicroKernelTrait;
}

0
src/Repository/.gitignore vendored Normal file
View file