Menu\Items\Item::setAfterContent PHP Method

setAfterContent() public method

Set the value to be inserted after the item's content
public setAfterContent ( string $value )
$value string The value to insert
    public function setAfterContent($value)
    {
        $this->beforeContent = $value;
        return $this;
    }