Completed
Push — master ( 9fbe45...817727 )
by Kevin
03:24
created

Table   A

Complexity

Total Complexity 11

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 3
Bugs 1 Features 1
Metric Value
wmc 11
c 3
b 1
f 1
lcom 1
cbo 2
dl 0
loc 34
ccs 20
cts 20
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
C removeInvalidChildren() 0 28 11
1
<?php
2
3
namespace Groundskeeper\Tokens\Elements;
4
5
use Groundskeeper\Configuration;
6
use Groundskeeper\Tokens\ElementTypes\FlowContent;
7
use Groundskeeper\Tokens\ElementTypes\OpenElement;
8
use Groundskeeper\Tokens\ElementTypes\ScriptSupporting;
9
use Groundskeeper\Tokens\Token;
10
use Psr\Log\LoggerInterface;
11
12
/**
13
 * "table" element
14
 *
15
 * https://html.spec.whatwg.org/multipage/semantics.html#the-table-element
16
 */
17
class Table extends OpenElement implements FlowContent
18
{
19
    /**
20
     * @todo Deal with validation of the order of child elements.
21
     */
22 5
    protected function removeInvalidChildren(LoggerInterface $logger)
23
    {
24 5
        foreach ($this->children as $child) {
25 5
            if ($child->getType() == Token::COMMENT) {
26 1
                continue;
27
            }
28
29 5
            if ($child->getType() !== Token::ELEMENT) {
30 1
                $logger->debug('Removing ' . $child . '. Only elements allowed as children of "table" element.');
31 1
                $this->removeChild($child);
32
33 1
                continue;
34
            }
35
36 5
            if ($child->getName() == 'caption' ||
37 5
                $child->getName() == 'colgroup' ||
38 5
                $child->getName() == 'thead' ||
39 5
                $child->getName() == 'tbody' ||
40 5
                $child->getName() == 'tr' ||
41 4
                $child->getName() == 'tfoot' ||
42 5
                $child instanceof ScriptSupporting) {
43 5
                continue;
44
            }
45
46 1
            $logger->debug('Removing ' . $child . '. Only "caption", "colgroup", "thead", "tbody", "tr", "tfoot", and script supporting elements allowed as children of "table" element.');
47 1
            $this->removeChild($child);
48 5
        }
49 5
    }
50
}
51