예제 #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();
     }
 }