Files
myep/src/Entity/TimestampableEntityInterface.php
T

15 lines
331 B
PHP

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