From b54e076ca0bbcd4691040469a40f2d059aa523c5 Mon Sep 17 00:00:00 2001 From: nobohan Date: Wed, 16 Feb 2022 10:27:34 +0100 Subject: [PATCH] PersonRenderInterface: remove methods --- .../Templating/Entity/PersonRenderInterface.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/Bundle/ChillPersonBundle/Templating/Entity/PersonRenderInterface.php b/src/Bundle/ChillPersonBundle/Templating/Entity/PersonRenderInterface.php index 748bf05b7..b4514a8c2 100644 --- a/src/Bundle/ChillPersonBundle/Templating/Entity/PersonRenderInterface.php +++ b/src/Bundle/ChillPersonBundle/Templating/Entity/PersonRenderInterface.php @@ -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; }