Files
gorilla/app/Service/Entities/EntityInterface.php
2026-01-12 12:37:16 +01:00

10 lines
187 B
PHP

<?php
namespace App\Service\Entities;
interface EntityInterface
{
public function __construct(InputEntity $entity);
public static function isValid(InputEntity $entity): bool;
}