From ab7e4fa5956f93fc1dd7f6b5d0b8590731d5782d Mon Sep 17 00:00:00 2001 From: Daniel Seifert Date: Sun, 23 Mar 2025 12:52:57 +0100 Subject: [PATCH] make SmartyCollector class compatible to parent class --- .../Models/Collectors/SmartyCollector.php | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/Application/Models/Collectors/SmartyCollector.php b/Application/Models/Collectors/SmartyCollector.php index b223159..04d2e1b 100644 --- a/Application/Models/Collectors/SmartyCollector.php +++ b/Application/Models/Collectors/SmartyCollector.php @@ -26,36 +26,6 @@ class SmartyCollector extends DataCollector implements Renderable /** @var Smarty */ protected $smarty; - /** - * @var bool - */ - protected $useHtmlVarDumper = false; - - /** - * Sets a flag indicating whether the Symfony HtmlDumper will be used to dump variables for - * rich variable rendering. - * - * @param bool $value - * @return $this - */ - public function useHtmlVarDumper(bool $value = true): SmartyCollector - { - $this->useHtmlVarDumper = $value; - - return $this; - } - - /** - * Indicates whether the Symfony HtmlDumper will be used to dump variables for rich variable - * rendering. - * - * @return bool - */ - public function isHtmlVarDumperUsed(): bool - { - return $this->useHtmlVarDumper; - } - /** * @param Smarty $smarty */