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

15 lines
335 B
PHP

<?php
namespace App\Entity;
interface TimestampableEntityInterface
{
public function getCreatedAt(): \DateTimeImmutable;
public function setCreatedAt(\DateTimeImmutable $createdAt): static;
public function getUpdatedAt(): ?\DateTimeImmutable;
public function setUpdatedAt(\DateTimeImmutable $updatedAt): static;
}