From 35107f36e2b1bf09fd3a675c1589476b3994bcc4 Mon Sep 17 00:00:00 2001 From: smiley Date: Sun, 3 Mar 2024 18:49:33 +0100 Subject: [PATCH] :octocat: --- src/Core/OAuthProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/OAuthProvider.php b/src/Core/OAuthProvider.php index 1f54129f..a98f06aa 100644 --- a/src/Core/OAuthProvider.php +++ b/src/Core/OAuthProvider.php @@ -111,7 +111,7 @@ public function __construct( /** * Magic getter for the properties specified in self::ALLOWED_PROPERTIES */ - public function __get(string $name):mixed{ + public function __get(string $name):string|null{ if(in_array($name, $this::ALLOWED_PROPERTIES, true)){ return $this->{$name};