23 lines
407 B
PHP
23 lines
407 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Core\Services\Home;
|
|
|
|
use DateTimeImmutable;
|
|
|
|
interface HomeEntityInterface
|
|
{
|
|
public function getId(): string;
|
|
|
|
public function getState(): mixed;
|
|
|
|
public function getName(): string;
|
|
|
|
public function getType(): HomeEntityType;
|
|
|
|
public function getLastChanged(): DateTimeImmutable;
|
|
|
|
public function getLastUpdated(): DateTimeImmutable;
|
|
}
|