コード例 #1
0
ファイル: CommandEvent.php プロジェクト: nask0/Wild-IRC-Bot
 public function __construct(CommandPRIVMSG $message)
 {
     $this->message = $message;
     if ($message->getBotCommand() === false || $message->getBotCommandParams() === false) {
         throw new \InvalidArgumentException('This CommandPRIVMSG does not have a command associated; CommandEvent can not be fired.');
     }
     $this->command = $message->getBotCommand();
     $this->params = $message->getBotCommandParams();
 }