From d50bca769e205da5af5f271f3f8a365851aa60c5 Mon Sep 17 00:00:00 2001 From: Michael MAS <147600733+michaelmaslengow@users.noreply.github.com> Date: Thu, 5 Mar 2026 14:34:37 +0100 Subject: [PATCH] fix(helper): [PCMT-1312] Bug display: Remove global variable for PHP 8.X --- Helper/Data.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/Helper/Data.php b/Helper/Data.php index 7fb2c13..6950429 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -740,9 +740,6 @@ function () { E_ALL => "E_ALL", ]; - if (defined('E_STRICT')) { - $labels[E_STRICT] = "E_STRICT"; - } $this->log( $labels[$error['type']] ?? 'PHP', $error['message'] . PHP_EOL . 'in ' . $error['file'] . ' on line ' . $error['line']