Passed
Push — master ( 221c35...fdb910 )
by Petr
02:59
created

Header   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 69
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 55
c 1
b 0
f 0
dl 0
loc 69
ccs 14
cts 14
cp 1
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace kalanis\Pohoda\IntDoc;
6
7
use kalanis\Pohoda\Common;
8
use kalanis\Pohoda\Document\AbstractHeader;
9
10
class Header extends AbstractHeader
11
{
12
    /**
13
     * {@inheritdoc}
14
     */
15 6
    protected function getDefaultDto(): Common\Dtos\AbstractDto
16
    {
17 6
        return new HeaderDto();
18
    }
19
}
20