Completed
Push — master ( fef96a...9f8b44 )
by Kevin
03:02
created

Main::doClean()   A

Complexity

Conditions 4
Paths 2

Size

Total Lines 15
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 20

Importance

Changes 2
Bugs 0 Features 2
Metric Value
c 2
b 0
f 2
dl 0
loc 15
ccs 0
cts 13
cp 0
rs 9.2
cc 4
eloc 10
nc 2
nop 1
crap 20
1
<?php
2
3
namespace Groundskeeper\Tokens\Elements;
4
5
use Groundskeeper\Tokens\ElementTypes\FlowContent;
6
use Groundskeeper\Tokens\ElementTypes\OpenElement;
7
8
/**
9
 * "main" element
10
 *
11
 * https://html.spec.whatwg.org/multipage/semantics.html#the-main-element
12
 */
13
class Main extends OpenElement implements FlowContent
14
{
15
16
}
17