Flarum\Core\Discussion::rename PHP Méthode

rename() public méthode

Rename the discussion. Raises the DiscussionWasRenamed event.
public rename ( string $title )
$title string
    public function rename($title)
    {
        if ($this->title !== $title) {
            $oldTitle = $this->title;
            $this->title = $title;
            $this->raise(new DiscussionWasRenamed($this, $oldTitle));
        }
        return $this;
    }