Passed
Push — master ( cdd133...439166 )
by Martin
03:26
created

DataStructure   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 33
ccs 8
cts 8
cp 1
rs 10
c 0
b 0
f 0
wmc 3
1
<?php
2
3
declare(strict_types = 1);
4
5
namespace KingsonDe\Marshal\Data;
6
7
interface DataStructure {
8
9
    /**
10
     * @return array|null
11
     */
12
    public function build();
13
}
14