Apple_Exporter\Components\Gallery::node_matches PHP Method

node_matches() public static method

Look for node matches for this component.
public static node_matches ( DomNode $node ) : mixed
$node DomNode
return mixed
    public static function node_matches($node)
    {
        if (self::node_has_class($node, 'gallery')) {
            return $node;
        }
        return null;
    }