Components_Release_Notes::getAnnouncement PHP Method

getAnnouncement() public method

Return the announcement text.
public getAnnouncement ( ) : string
return string The text.
    public function getAnnouncement()
    {
        if (isset($this->_notes['changes'])) {
            return $this->_notes['changes'];
        }
        return '';
    }