PersonRenderInterface: remove methods

This commit is contained in:
nobohan 2022-02-16 10:27:34 +01:00
parent 3aa12d2e8c
commit b54e076ca0

View File

@ -19,15 +19,4 @@ use Chill\PersonBundle\Entity\Person;
*/
interface PersonRenderInterface extends ChillEntityRenderInterface
{
/**
* @param Person $person
*/
public function renderBox($person, array $options): string;
/**
* @param Person $person
*/
public function renderString($person, array $options): string;
public function supports($entity, array $options): bool;
}