From 4c4ee44b5c21a37a10357dc3d2f34f5fa9d9fb73 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Fri, 23 Sep 2022 11:59:43 -0400 Subject: [PATCH] [#16115] - changed return type --- phalcon/Encryption/Security/JWT/Validator.zep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phalcon/Encryption/Security/JWT/Validator.zep b/phalcon/Encryption/Security/JWT/Validator.zep index e93bdf18cae..a5f58f53975 100644 --- a/phalcon/Encryption/Security/JWT/Validator.zep +++ b/phalcon/Encryption/Security/JWT/Validator.zep @@ -72,7 +72,7 @@ class Validator return this->errors; } - public function get(string claim) -> var | null + public function get(string claim) -> mixed | null { if isset this->claims[claim] { return this->claims[claim];