OpenGraph\Opengraph::getMeta PHP Method

getMeta() public method

Get meta by property name
public getMeta ( String $property ) : Meta
$property String
return Meta
    public function getMeta($property)
    {
        foreach (static::$storage as $meta) {
            if ($meta->getProperty() == $property) {
                return $meta->getContent();
            }
        }
        return false;
    }