Completed
Push — master ( 0df277...6ea006 )
by Maxim
03:10
created

MaxValueConstraint::check()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 7
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 7
loc 7
rs 9.4285
cc 2
eloc 4
nc 2
nop 2
1
<?php
2
3
namespace Weew\Validator\Constraints;
4
5
use Weew\Validator\IConstraint;
6
use Weew\Validator\IValidationData;
7
8 View Code Duplication
class MaxValueConstraint implements IConstraint {
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
9
    /**
10
     * @var int
11
     */
12
    protected $max;
13
14
    /**
15
     * @var string
16
     */
17
    protected $message;
18
19
    /**
20
     * MaxValueConstraint constructor.
21
     *
22
     * @param int $max
23
     * @param string $message
24
     */
25
    public function __construct($max, $message = null) {
26
        $this->max = $max;
27
        $this->message = $message;
28
    }
29
30
    /**
31
     * @param $value
32
     * @param IValidationData $data
33
     *
34
     * @return bool
35
     */
36
    public function check($value, IValidationData $data = null) {
37
        if (is_numeric($value)) {
38
            return $value <= $this->max;
39
        }
40
41
        return false;
42
    }
43
44
    /**
45
     * @return string
46
     */
47
    public function getMessage() {
48
        if ($this->message !== null) {
49
            return $this->message;
50
        }
51
52
        return s(
53
            'Must not be greater than "%s".', $this->max
54
        );
55
    }
56
57
    /**
58
     * @return array
59
     */
60
    public function getOptions() {
61
        return [
62
            'max' => $this->max,
63
        ];
64
    }
65
}
66