ArrayDoc::getItemValidation()   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 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
namespace Yoanm\JsonRpcServerDoc\Domain\Model\Type;
3
4
/**
5
 * Class ArrayDoc
6
 */
7
class ArrayDoc extends CollectionDoc
8
{
9
    /** @var TypeDoc|null */
10
    private $itemValidation = null;
11
12
    /**
13
     * @param TypeDoc $itemValidation
14
     *
15
     * @return self
16
     */
17 2
    public function setItemValidation(TypeDoc $itemValidation) : self
18
    {
19 2
        $this->itemValidation = $itemValidation;
20
21 2
        return $this;
22
    }
23
24
    /**
25
     * @return TypeDoc|null
26
     */
27 6
    public function getItemValidation() : ?TypeDoc
28
    {
29 6
        return $this->itemValidation;
30
    }
31
}
32