Feat: Make some entities soft-deletable

This commit is contained in:
Björn Fromme
2023-10-20 17:17:21 +02:00
parent 168a69c103
commit d7bbb4bb29
27 changed files with 213 additions and 63 deletions
@@ -0,0 +1,10 @@
<?php
namespace App\Entity;
interface SoftDeletableEntityInterface
{
public function getDeletedAt(): ?\DateTimeImmutable;
public function setDeletedAt(\DateTimeImmutable $createdAt): static;
}