From 2046f868568be9998555f5c2dd43949efeb5a54f Mon Sep 17 00:00:00 2001 From: Leonardo Lara Rodrigues Date: Sat, 21 Dec 2024 10:18:43 -0300 Subject: [PATCH] fix property name It turns out that the warning about the dynamic property was in fact an existing property name that was typed incorrectly. --- scripts/translation/lib/RevcheckFileItem.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/translation/lib/RevcheckFileItem.php b/scripts/translation/lib/RevcheckFileItem.php index ef6db3a3d..1e8541226 100644 --- a/scripts/translation/lib/RevcheckFileItem.php +++ b/scripts/translation/lib/RevcheckFileItem.php @@ -19,7 +19,6 @@ require_once __DIR__ . '/all.php'; -#[\AllowDynamicProperties] class RevcheckFileItem { public string $file = ""; // from fs @@ -63,7 +62,7 @@ public function addGitLogData( string $hash , string $date , bool $skip ) : void } if ( $skip ) - $this->diffHash = $hash; + $this->hashDiff = $hash; else $this->hashStop = true; }