Artesaos\SEOTools\OpenGraph::setVideoTVShow PHP Method

setVideoTVShow() public method

Set video episode properties.
public setVideoTVShow ( array $attributes = [] ) : Artesaos\SEOTools\Contracts\OpenGraph
$attributes array opengraph video.tv_show attributes
return Artesaos\SEOTools\Contracts\OpenGraph
    public function setVideoTVShow($attributes = [])
    {
        $validkeys = ['actor', 'actor:role', 'director', 'writer', 'duration', 'release_date', 'tag'];
        $this->setProperties('video.tv_show', 'videoTVShowProperties', $attributes, $validkeys);
        return $this;
    }