Lavary\Menu\Link::active PHP Method

active() public method

Make the anchor active
public active ( ) : Lavary\Menu\Link
return Lavary\Menu\Link
    public function active()
    {
        $this->attributes['class'] = Builder::formatGroupClass(array('class' => 'active'), $this->attributes);
        $this->isActive = true;
        return $this;
    }