From 841ea9bb11555e0e3a0b2925cb109c060928aa97 Mon Sep 17 00:00:00 2001 From: Eric Espie Date: Thu, 30 Apr 2026 10:26:34 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B09165=20-=20fix=20greptile=20mistake?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sources/Service/Limits/ExecutionLimits.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/sources/Service/Limits/ExecutionLimits.php b/sources/Service/Limits/ExecutionLimits.php index c5343d856c..14af39a707 100644 --- a/sources/Service/Limits/ExecutionLimits.php +++ b/sources/Service/Limits/ExecutionLimits.php @@ -19,8 +19,6 @@ class ExecutionLimits * @param int $iMaxMemoryPercent Max memory percent allowed (0-100) */ public function __construct(int $iMaxDuration = 0, int $iMaxMemoryPercent = 100) - { - public function __construct(int $iMaxDuration = 0, int $iMaxMemoryPercent = 100) { $this->iMaxTime = ($iMaxDuration > 0) ? ($iMaxDuration + time()) : 0; $this->iMaxMemoryPercent = (int)min(max($iMaxMemoryPercent, 0), 100);