コード例 #1
0
ファイル: Iugu.php プロジェクト: mateusjatenee/iugu-php
 /**
  * @param $key
  */
 public static function setApiKey($key)
 {
     $descriptor = new ServiceDescriptor($key);
     Container::register($descriptor);
 }
コード例 #2
0
 /**
  * @param $token
  * @param $key
  * @param bool $production
  */
 public static function setCredentials($token, $key, $production = false)
 {
     $descriptor = new ServiceDescriptor($token, $key, $production);
     Container::register($descriptor);
 }