コード例 #1
0
ファイル: Visitor.php プロジェクト: satvheck/laravel-visitor
 private function initRegion(GeoIP $geoIP)
 {
     $storage = new SessionStorage();
     // TODO use binding
     if (!$storage->has('region')) {
         $storage->set('region', $this->getRegionByIp($geoIP));
     }
     $this->region = $storage->get('region');
 }