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

make() public static method

Make a description instance.
public static make ( string $content, integer $max = 155 ) : self
$content string
$max integer
return self
    public static function make($content, $max = 155)
    {
        return new self(['default' => $content, 'max' => $max]);
    }