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;
    }