From 9497b8e77daf147b9861492dcdf6c0880ac566a4 Mon Sep 17 00:00:00 2001 From: David Paul <dpaul4@une.edu.au> Date: Tue, 27 Jun 2023 03:05:05 +0000 Subject: [PATCH] Update OAuth.php to remove creation of dynamic property --- lib/lti/OAuth.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/lti/OAuth.php b/lib/lti/OAuth.php index a5490b0..8ad89a4 100644 --- a/lib/lti/OAuth.php +++ b/lib/lti/OAuth.php @@ -12,6 +12,7 @@ class OAuthException extends Exception { class OAuthConsumer { public $key; public $secret; + public $callback_url; function __construct($key, $secret, $callback_url=NULL) { $this->key = $key; -- GitLab