コード例 #1
0
ファイル: Manager.php プロジェクト: postfix/sylar
 public function listen()
 {
     $ip = $this->getIp();
     if (is_null($ip)) {
         throw new Exceptions\WithoutIpException();
     }
     if ($this->storage->exists($ip)) {
         throw new Exceptions\BlockedIpException();
     }
 }