Completed
Push — master ( 0647d9...63117e )
by Sebastian
02:16
created

Max::validate()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 2
dl 0
loc 7
ccs 4
cts 4
cp 1
crap 2
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Linna Filter
5
 *
6
 * @author Sebastian Rapetti <[email protected]>
7
 * @copyright (c) 2017, Sebastian Rapetti
8
 * @license http://opensource.org/licenses/MIT MIT License
9
 */
10
declare(strict_types = 1);
11
12
namespace Linna\Filter\Rules;
13
14
/**
15
 * Check if value is above a maximum.
16
 */
17
class Max
18
{
19
    /**
20
     * Validate.
21
     *
22
     * @return bool
23
     */
24 6
    public function validate($received, $max): bool
25
    {
26 6
        if ($received > $max) {
27 2
            return true;
28
        }
29
30 4
        return false;
31
    }
32
}
33