$expiresIn now static

This commit is contained in:
Alex Bilbie 2013-02-01 15:28:25 +00:00
parent fcf57abbb2
commit 47731ce901

View File

@ -20,7 +20,7 @@ class AuthServer
*/
protected $scopeDelimeter = ',';
protected $expiresIn = 3600;
static protected $expiresIn = 3600;
protected $responseTypes = array();
@ -109,7 +109,7 @@ class AuthServer
public static function getExpiresIn()
{
return $this->expiresIn;
return self::$expiresIn;
}
public function setExpiresIn($expiresIn)