From c91a1fd4be80f9c5b8871cbaa990ef7d99abd9be Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Mon, 18 Sep 2023 16:45:54 +0700 Subject: [PATCH] re-run Rector --- system/Encryption/Encryption.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Encryption/Encryption.php b/system/Encryption/Encryption.php index 55c0cd4d7320..113703d55649 100644 --- a/system/Encryption/Encryption.php +++ b/system/Encryption/Encryption.php @@ -108,7 +108,7 @@ public function __construct(?EncryptionConfig $config = null) */ public function initialize(?EncryptionConfig $config = null) { - if ($config instanceof \Config\Encryption) { + if ($config instanceof EncryptionConfig) { $this->key = $config->key; $this->driver = $config->driver; $this->digest = $config->digest ?? 'SHA512';