예제 #1
0
파일: ApiOd.php 프로젝트: gudwin/extasy
 public function __construct($applicationKey, $applicationSecretKey, Token $token)
 {
     parent::__construct($token);
     $this->applicationKey = $applicationKey;
     $this->applicationSecretKey = $applicationSecretKey;
 }
예제 #2
0
파일: ApiMr.php 프로젝트: veksa/php-social
 public function __construct($appId, $appSecret, Token $token)
 {
     parent::__construct($token);
     $this->appId = $appId;
     $this->appSecret = $appSecret;
 }
예제 #3
0
 public function __construct($consumerKey, $consumerSecret, Token $token)
 {
     parent::__construct($token);
     $this->consumerKey = $consumerKey;
     $this->consumerSecret = $consumerSecret;
 }