Completed
Push — master ( 91ab9a...64950e )
by Kevin
04:15
created

Aside::removeInvalidChildren()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 1
nc 1
nop 1
crap 1
1
<?php
2
3
namespace Groundskeeper\Tokens\Elements;
4
5
use Groundskeeper\Tokens\ElementTypes\FlowContent;
6
use Groundskeeper\Tokens\ElementTypes\OpenElement;
7
use Groundskeeper\Tokens\ElementTypes\SectioningContent;
8
use Psr\Log\LoggerInterface;
9
10
/**
11
 * "aside" element
12
 *
13
 * https://html.spec.whatwg.org/multipage/semantics.html#the-aside-element
14
 */
15
class Aside extends OpenElement implements FlowContent, SectioningContent
16
{
17 1
    protected function removeInvalidChildren(LoggerInterface $logger)
18
    {
19
        /// @todo Remove "main" element descendents.
20 1
    }
21
}
22