From 295ae8d83ccd7587f424a2504d13843386daf241 Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Fri, 29 Nov 2024 18:16:09 +0100 Subject: [PATCH] tec: Don't include view_helpers.php in View This is done by Composer now. --- src/Output/View.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Output/View.php b/src/Output/View.php index a002710..8014291 100644 --- a/src/Output/View.php +++ b/src/Output/View.php @@ -193,8 +193,6 @@ public function render(): string $$var_name = $var_value; } - include_once('view_helpers.php'); - ob_start(); include $this->filepath; $output = ob_get_clean();