From 8cb2bb1ef468c5989c3f7dc737c9dae7a71ef693 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Tue, 5 Nov 2024 14:52:28 +0100 Subject: [PATCH] Fix rector pipeline --- .../Templating/Entity/ChillEntityRenderInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bundle/ChillMainBundle/Templating/Entity/ChillEntityRenderInterface.php b/src/Bundle/ChillMainBundle/Templating/Entity/ChillEntityRenderInterface.php index d628420c7..6ee5d0872 100644 --- a/src/Bundle/ChillMainBundle/Templating/Entity/ChillEntityRenderInterface.php +++ b/src/Bundle/ChillMainBundle/Templating/Entity/ChillEntityRenderInterface.php @@ -35,7 +35,7 @@ interface ChillEntityRenderInterface * * @phpstan-pure */ - public function renderBox($entity, array $options): string; + public function renderBox(mixed $entity, array $options): string; /** * Return the entity as a string. @@ -46,7 +46,7 @@ interface ChillEntityRenderInterface * * @phpstan-pure */ - public function renderString($entity, array $options): string; + public function renderString(mixed $entity, array $options): string; /** * Return true if the class support this object for the given options.