コード例 #1
0
ファイル: Chan.php プロジェクト: erebot/erebot
 public function match(\Erebot\Interfaces\Event\Base\Generic $event)
 {
     if (!$event instanceof \Erebot\Interfaces\Event\Base\Chan) {
         return false;
     }
     $collator = $event->getConnection()->getCollator();
     return $collator->compare($event->getChan(), (string) $this->chan) == 0;
 }