Calotype\SEO\Generators\OpenGraphGenerator::fromRaw PHP Method

fromRaw() public method

Set the open graph properties from a raw array.
public fromRaw ( array $properties )
$properties array
    public function fromRaw($properties)
    {
        $this->validateProperties($properties);
        foreach ($properties as $property => $value) {
            $this->properties[$property] = $value;
        }
    }