NumberDoc::setInclusiveMax()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 5
ccs 3
cts 3
cp 1
crap 1
rs 10
1
<?php
2
namespace Yoanm\JsonRpcServerDoc\Domain\Model\Type;
3
4
/**
5
 * Class NumberDoc
6
 */
7
class NumberDoc extends ScalarDoc
8
{
9
    /*** Validation ***/
10
    /** @var null|int|float */
11
    private $min = null;
12
    /** @var null|int|float */
13
    private $max = null;
14
    /** @var bool */
15
    private $inclusiveMin = true;
16
    /** @var bool */
17
    private $inclusiveMax = true;
18
19
    /**
20
     * @param int|float $min
21
     *
22
     * @return self
23
     */
24 10
    public function setMin($min) : self
25
    {
26 10
        if (null === $min || (!is_float($min) && !is_int($min))) {
27 4
            throw new \InvalidArgumentException('min must be either a float or an integer.');
28
        }
29
30 6
        $this->min = $min;
31
32 6
        return $this;
33
    }
34
35
    /**
36
     * @param int|float $max
37
     *
38
     * @return self
39
     */
40 10
    public function setMax($max) : self
41
    {
42 10
        if (null === $max || (!is_float($max) && !is_int($max))) {
43 4
            throw new \InvalidArgumentException('max must be either a float or an integer.');
44
        }
45
46 6
        $this->max = $max;
47
48 6
        return $this;
49
    }
50
51
    /**
52
     * @param bool $inclusiveMax
53
     *
54
     * @return self
55
     */
56 4
    public function setInclusiveMax(bool $inclusiveMax) : self
57
    {
58 4
        $this->inclusiveMax = $inclusiveMax;
59
60 4
        return $this;
61
    }
62
63
    /**
64
     * @param bool $inclusiveMin
65
     *
66
     * @return self
67
     */
68 4
    public function setInclusiveMin(bool $inclusiveMin) : self
69
    {
70 4
        $this->inclusiveMin = $inclusiveMin;
71
72 4
        return $this;
73
    }
74
75
    /**
76
     * @return null|int|float
77
     */
78 9
    public function getMin()
79
    {
80 9
        return $this->min;
81
    }
82
83
    /**
84
     * @return null|int|float
85
     */
86 9
    public function getMax()
87
    {
88 9
        return $this->max;
89
    }
90
91
    /**
92
     * @return bool
93
     */
94 4
    public function isInclusiveMin() : bool
95
    {
96 4
        return $this->inclusiveMin;
97
    }
98
99
    /**
100
     * @return bool
101
     */
102 4
    public function isInclusiveMax() : bool
103
    {
104 4
        return $this->inclusiveMax;
105
    }
106
}
107