Artesaos\SEOTools\OpenGraph::addVideo PHP Method

addVideo() public method

Add video properties.
public addVideo ( string $source = null, array $attributes = [] ) : Artesaos\SEOTools\Contracts\OpenGraph
$source string url of video source
$attributes array opengraph video attributes
return Artesaos\SEOTools\Contracts\OpenGraph
    public function addVideo($source = null, $attributes = [])
    {
        $validKeys = ['url', 'secure_url', 'type', 'width', 'height'];
        $this->videoProperties[] = [$source, $this->cleanProperties($attributes, $validKeys)];
        return $this;
    }