Fix rector pipeline

This commit is contained in:
Julie Lenaerts 2024-11-05 14:52:28 +01:00
parent cc7e9235b5
commit 8cb2bb1ef4

View File

@ -35,7 +35,7 @@ interface ChillEntityRenderInterface
* *
* @phpstan-pure * @phpstan-pure
*/ */
public function renderBox($entity, array $options): string; public function renderBox(mixed $entity, array $options): string;
/** /**
* Return the entity as a string. * Return the entity as a string.
@ -46,7 +46,7 @@ interface ChillEntityRenderInterface
* *
* @phpstan-pure * @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. * Return true if the class support this object for the given options.