Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mirko-pagliai committed Jan 2, 2024
1 parent ad98445 commit 0ae2b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utility/AbstractBackupUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function __get(string $name)
throw new LogicException('Undefined property: ' . get_class($class) . '::$' . $name);
}

return $this->$name;
return $this->{$name};
}

/**
Expand Down

0 comments on commit 0ae2b23

Please sign in to comment.