Record deletion logic (maybe)

This commit is contained in:
2024-11-07 08:06:17 +01:00
parent 36185d0539
commit 3c2b804498
14 changed files with 197 additions and 20 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Entity;
use App\RecordInterface;
use App\Repository\BibliographyRepository;
use DateTimeImmutable;
use Doctrine\ORM\Mapping as ORM;
@@ -11,7 +12,7 @@ use Doctrine\Common\Collections\Collection as DoctrineCollection;
#[ORM\Entity(repositoryClass: BibliographyRepository::class)]
#[ORM\Table(name: 'bibliography')]
class Bibliography
class Bibliography implements RecordInterface
{
#[ORM\Id]
#[ORM\GeneratedValue]