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

make() публичный статический Метод

Make a description instance.
public static make ( string $content, integer $max = 155 ) : self
$content string
$max integer
Результат self
    public static function make($content, $max = 155)
    {
        return new self(['default' => $content, 'max' => $max]);
    }