App\Source\Composite\MenuLink::prepend PHP Method

prepend() public method

Add content at the beginning of hyperlink's text
public prepend ( $content ) : Link
return Link
    public function prepend($content)
    {
        $this->text = $content . $this->text;
        return $this;
    }