Skip to content

Commit

Permalink
fix property name
Browse files Browse the repository at this point in the history
It turns out that the warning about the dynamic property was in fact an existing property name that was typed incorrectly.
  • Loading branch information
leonardolara authored Dec 21, 2024
1 parent ce42671 commit 2046f86
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/translation/lib/RevcheckFileItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

require_once __DIR__ . '/all.php';

#[\AllowDynamicProperties]
class RevcheckFileItem
{
public string $file = ""; // from fs
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit 2046f86

Please sign in to comment.