MoreRule   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 37
ccs 7
cts 7
cp 1
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A getDescription() 0 3 1
A validate() 0 3 1
1
<?php
2
3
/**
4
 * Bluz Framework Component
5
 *
6
 * @copyright Bluz PHP Team
7
 * @link      https://github.com/bluzphp/framework
8
 */
9
10
declare(strict_types=1);
11
12
namespace Bluz\Validator\Rule;
13
14
/**
15
 * Check for minimum
16
 *
17
 * @package Bluz\Validator\Rule
18
 */
19
class MoreRule extends AbstractCompareRule
20
{
21
    /**
22
     * @var mixed minimum value
23
     */
24
    protected $minValue;
25
26
    /**
27
     * Setup validation rule
28
     *
29
     * @param mixed $minValue
30
     */
31 16
    public function __construct($minValue)
32
    {
33 16
        $this->minValue = $minValue;
34 16
    }
35
36
    /**
37
     * Check input data
38
     *
39
     * @param  NumericRule $input
40
     *
41
     * @return bool
42
     */
43 16
    public function validate($input): bool
44
    {
45 16
        return $this->less($this->minValue, $input);
46
    }
47
48
    /**
49
     * Get error template
50
     *
51
     * @return string
52
     */
53 6
    public function getDescription(): string
54
    {
55 6
        return __('must be greater than "%s"', $this->minValue);
56
    }
57
}
58