1 | <?php declare(strict_types=1); |
||
10 | class Image extends \FeedIo\RuleAbstract |
||
11 | { |
||
12 | |||
13 | const NODE_NAME = 'image'; |
||
14 | |||
15 | /** |
||
16 | * @inheritDoc |
||
17 | */ |
||
18 | public function setProperty(NodeInterface $node, \DOMElement $element): void |
||
26 | |||
27 | /** |
||
28 | * @inheritDoc |
||
29 | */ |
||
30 | protected function hasValue(NodeInterface $node): bool |
||
34 | |||
35 | /** |
||
36 | * @inheritDoc |
||
37 | */ |
||
38 | protected function addElement(\DomDocument $document, \DOMElement $rootElement, NodeInterface $node): void |
||
42 | } |
||
43 |