Ejemplo n.º 1
0
 /**
  * Constructor.
  *
  * @param string $key
  *     {@link getKey()}
  * @param string $secret
  *     {@link getSecret()}
  */
 function __construct($key, $secret)
 {
     AppInfo::checkKeyArg($key);
     AppInfo::checkSecretArg($secret);
     $this->key = $key;
     $this->secret = $secret;
 }