public function __construct($applicationKey, $applicationSecretKey, Token $token) { parent::__construct($token); $this->applicationKey = $applicationKey; $this->applicationSecretKey = $applicationSecretKey; }
public function __construct($appId, $appSecret, Token $token) { parent::__construct($token); $this->appId = $appId; $this->appSecret = $appSecret; }
public function __construct($consumerKey, $consumerSecret, Token $token) { parent::__construct($token); $this->consumerKey = $consumerKey; $this->consumerSecret = $consumerSecret; }