예제 #1
0
 public function __construct($cert, $keyPair, $data)
 {
     parent::__construct($data);
     $this->cert = $cert;
     $this->keyPair = $keyPair;
 }
예제 #2
0
 public function __construct($appId, $appPubKey, $data)
 {
     parent::__construct($data);
     $this->appId = $appId;
     $this->appPubKey = $appPubKey;
 }
예제 #3
0
 /**
  * @param string $cxnId
  * @param string $secret
  *   Base64-encoded secret.
  * @param mixed $data
  *   Serializable data.
  */
 public function __construct($cxnId, $secret, $data)
 {
     parent::__construct($data);
     $this->cxnId = $cxnId;
     $this->secret = $secret;
 }