From 1a1bfd9348bd9024f01059241d9b7091cc57f2b0 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Mon, 4 Feb 2013 15:32:21 +0000 Subject: [PATCH] Fix $expiresIn call as static --- src/OAuth2/AuthServer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OAuth2/AuthServer.php b/src/OAuth2/AuthServer.php index 92c4ac82..03b1ba87 100644 --- a/src/OAuth2/AuthServer.php +++ b/src/OAuth2/AuthServer.php @@ -114,7 +114,7 @@ class AuthServer public function setExpiresIn($expiresIn) { - $this->expiresIn = $expiresIn; + self::$expiresIn = $expiresIn; } /**