Arcanedev\SeoHelper\Entities\Description::setMax PHP Method

setMax() public method

Set description max length.
public setMax ( integer $max ) : self
$max integer
return self
    public function setMax($max)
    {
        $this->checkMax($max);
        $this->max = $max;
        return $this;
    }