Arcanedev\SeoHelper\Entities\Twitter\Card::setType PHP Метод

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

Set the card type.
public setType ( string $type ) : Card
$type string
Результат Card
    public function setType($type)
    {
        if (empty($type)) {
            return $this;
        }
        $this->checkType($type);
        $this->type = $type;
        return $this->addMeta('card', $type);
    }