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