Completed
Pull Request — project/php-7 (#133)
by Alex
04:04 queued 01:49
created

Structure::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
ccs 4
cts 4
cp 1
rs 9.4285
cc 2
eloc 3
nc 2
nop 2
crap 2
1
<?php
2
/*
3
 * This file is part of the feed-io package.
4
 *
5
 * (c) Alexandre Debril <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace FeedIo\Rule;
12
13
use FeedIo\Feed\NodeInterface;
14
use FeedIo\RuleAbstract;
15
use FeedIo\RuleSet;
16
17
class Structure extends RuleAbstract
18
{
19
    const NODE_NAME = 'structure';
20
21
    /**
22
     * @var \FeedIo\RuleSet
23
     */
24
    protected $ruleSet;
25
26
    /**
27
     * @param string  $nodeName
28
     * @param RuleSet $ruleSet
29
     */
30 6
    public function __construct($nodeName = null, $ruleSet = null)
31
    {
32 6
        parent::__construct($nodeName);
33
34 6
        $this->ruleSet = is_null($ruleSet) ? new RuleSet() : $ruleSet;
35 6
    }
36
37
    /**
38
     * @param  NodeInterface $node
39
     * @param  \DOMElement   $element
40
     * @return mixed
41
     */
42 2
    public function setProperty(NodeInterface $node, \DOMElement $element)
43
    {
44 2
        foreach ($element->childNodes as $domNode) {
45 2
            if ($domNode instanceof \DomElement) {
46 2
                $rule = $this->ruleSet->get($domNode->tagName);
47 2
                $rule->setProperty($node, $domNode);
48
            }
49
        }
50
51 2
        return $this;
52
    }
53
54
    /**
55
     * @inheritDoc
56
     */
57 1
    protected function hasValue(NodeInterface $node) : bool
58
    {
59 1
        return true;
60
    }
61
62
    /**
63
     * @inheritDoc
64
     */
65 1 View Code Duplication
    protected function addElement(\DomDocument $document, \DOMElement $rootElement, NodeInterface $node) : void
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
66
    {
67 1
        $element = $document->createElement($this->getNodeName());
68
69
        /** @var RuleAbstract $rule */
70 1
        foreach ($this->ruleSet->getRules() as $rule) {
71 1
            $rule->apply($document, $element, $node);
72
        }
73
74 1
        $rootElement->appendChild($element);
75 1
    }
76
}
77