App\Source\Composite\MenuLink::prepend PHP 메소드

prepend() 공개 메소드

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