コード例 #1
0
ファイル: TelizeDriver.php プロジェクト: josezenem/geoip
 /**
  * @param array $config
  */
 public function __construct(array $config)
 {
     parent::__construct($config);
     if (!array_get($this->config, 'key')) {
         throw new InvalidCredentialsException();
     }
 }
コード例 #2
0
ファイル: MaxmindDriver.php プロジェクト: josezenem/geoip
 /**
  * @param array $config
  */
 public function __construct(array $config)
 {
     parent::__construct($config);
     $this->maxmind = $this->create();
 }