From 32ddfe10e53ffad6c4d6a3ed08359a01e13b244b Mon Sep 17 00:00:00 2001 From: MikeRow <47996463+mikerow@users.noreply.github.com> Date: Wed, 7 Oct 2020 20:01:27 +0200 Subject: [PATCH] Update NanoSalt.php --- src/NanoSalt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NanoSalt.php b/src/NanoSalt.php index 39e4a67..081bc71 100644 --- a/src/NanoSalt.php +++ b/src/NanoSalt.php @@ -78,7 +78,7 @@ class NanoSalt public static function instance() { if (!isset(static::$instance)) { - static::$instance = new Salt(); + static::$instance = new NanoSalt(); } return static::$instance; }