Add doctrine and seperate out the renderer

This commit is contained in:
Tim
2023-08-16 14:28:06 +02:00
parent 56e8caa26c
commit 59200be680
11 changed files with 2158 additions and 54 deletions

13
app/Entity/Book.php Normal file
View File

@ -0,0 +1,13 @@
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity]
#[ORM\Table(name: 'book')]
class Book
{
#[ORM\Id, ORM\Column, ORM\GeneratedValue]
private int $id;
}