Restriction::addCheck()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 2
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace GoetasWebservices\XML\XSDReader\Schema\Inheritance;
6
7
class Restriction extends Base
8
{
9
    /**
10
     * @var mixed[][]
11
     */
12
    protected $checks = array();
13
14
    /**
15
     * @param string  $type
16
     * @param mixed[] $value
17
     */
18 58
    public function addCheck(string $type, array $value): void
19
    {
20 58
        $this->checks[$type][] = $value;
21 58
    }
22
23
    /**
24
     * @return mixed[][]
25
     */
26 10
    public function getChecks(): array
27
    {
28 10
        return $this->checks;
29
    }
30
31
    /**
32
     * @param string $type
33
     *
34
     * @return mixed[]
35
     */
36
    public function getChecksByType(string $type): array
37
    {
38
        return isset($this->checks[$type]) ? $this->checks[$type] : array();
39
    }
40
}
41