From 75578a1a81ed7b07b46fcc7d0db83c3571c26a31 Mon Sep 17 00:00:00 2001 From: TriHydera <39857764+TriHydera@users.noreply.github.com> Date: Tue, 16 Jul 2024 17:03:13 +0100 Subject: [PATCH] HashID fixes - Fix forward slash, not using just the `HashText` name --- src/HashID.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/HashID.php b/src/HashID.php index d94d4c3..8b32de7 100644 --- a/src/HashID.php +++ b/src/HashID.php @@ -17,7 +17,7 @@ class HashID { * @param string $salt The salt value for hashing (default is '0'). */ public function __construct($salt = '0') { - $this->hash = new Hashutils/HashText($salt); + $this->hash = new HashText($salt); } /** @@ -41,4 +41,4 @@ public function verify($hash) { return $gen == $hash ? true : false; } } -?> \ No newline at end of file +?>