Arcanedev\SeoHelper\Entities\Description::setMax PHP Méthode

setMax() public méthode

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