Arcanedev\SeoHelper\Entities\Description::setMax PHP Метод

setMax() публичный Метод

Set description max length.
public setMax ( integer $max ) : self
$max integer
Результат self
    public function setMax($max)
    {
        $this->checkMax($max);
        $this->max = $max;
        return $this;
    }