49 lines
851 B
PHP
49 lines
851 B
PHP
<?php
|
|
|
|
namespace Slovocast\Domain;
|
|
|
|
use DateTime;
|
|
use DateTimeImmutable;
|
|
|
|
trait Entity
|
|
{
|
|
protected ?int $id;
|
|
protected ?DateTimeImmutable $createdAt;
|
|
protected ?DateTime $updatedAt;
|
|
|
|
public function isNew(): bool
|
|
{
|
|
return (bool) $this->id;
|
|
}
|
|
|
|
public function setId(int $id): void
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function getId(): int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function setCreatedAt(DateTimeImmutable $createdAt): void
|
|
{
|
|
$this->createdAt = $createdAt;
|
|
}
|
|
|
|
public function getCreatedAt(): DateTimeImmutable
|
|
{
|
|
return $this->createdAt;
|
|
}
|
|
|
|
public function setUpdatedAt(DateTime $updatedAt): void
|
|
{
|
|
$this->updatedAt = $updatedAt;
|
|
}
|
|
|
|
public function getUpdatedAt(): DateTime
|
|
{
|
|
return $this->updatedAt;
|
|
}
|
|
}
|