summary = $summary; $this->bot = $bot; $this->minor = $minor; } /** * @return EditInfo::BOT|self::NOTBOT */ public function getBot() { return $this->bot; } /** * @return EditInfo::MINOR|self::NOTMINOR */ public function getMinor() { return $this->minor; } /** * @return string */ public function getSummary() { return $this->summary; } }