Files
myep-team/src/Entity/SoftDeletableEntityInterface.php
T

11 lines
204 B
PHP

<?php
namespace App\Entity;
interface SoftDeletableEntityInterface
{
public function getDeletedAt(): ?\DateTimeImmutable;
public function setDeletedAt(\DateTimeImmutable $createdAt): static;
}