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 */