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