public function __construct($cert, $keyPair, $data) { parent::__construct($data); $this->cert = $cert; $this->keyPair = $keyPair; }
public function __construct($appId, $appPubKey, $data) { parent::__construct($data); $this->appId = $appId; $this->appPubKey = $appPubKey; }
/** * @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; }