From 665d022717288ce6c120c35e9d3cdb4cc9abed12 Mon Sep 17 00:00:00 2001 From: Austin Ginder Date: Sun, 8 Jun 2025 18:55:45 -0400 Subject: [PATCH] Update Plugin.php Fix PHP fatal on WordPres backend. --- src/Plugin.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Plugin.php b/src/Plugin.php index 68b0e64..e5b5e38 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -76,6 +76,7 @@ public function __construct($file) */ public function get_password_generator() { + $this->load(); return $this->container['password.generator']; } @@ -86,6 +87,7 @@ public function get_password_generator() */ public function get_password_hasher() { + $this->load(); return $this->container['password.hasher']; }