コード例 #1
0
ファイル: GeoPlugin.php プロジェクト: muhamadsyahril/location
 /**
  * Constructor.
  *
  * @param LocationInstance $instance
  */
 public function __construct(LocationInstance $instance)
 {
     $this->instance = $instance;
     $this->config = $this->instance->getConfig();
     $this->url = $this->config->get('location.drivers.GeoPlugin.url');
 }
コード例 #2
0
 /**
  * @param LocationInstance $instance
  */
 public function __construct(LocationInstance $instance)
 {
     $this->instance = $instance;
     $this->config = $this->instance->getConfig();
     $this->url = $this->config->get('location' . $this->instance->getConfigSeparator() . 'drivers.IpInfo.url');
 }
コード例 #3
0
ファイル: MaxMind.php プロジェクト: natsu90/location
 /**
  * Constructor.
  *
  * @param LocationInstance $instance
  */
 public function __construct(LocationInstance $instance)
 {
     $this->instance = $instance;
     $this->config = $this->instance->getConfig();
 }