Artesaos\SEOTools\OpenGraph::setVideoMovie PHP Method

setVideoMovie() public method

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