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

MaxValueConstraint   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 58
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 6
c 1
b 0
f 0
lcom 1
cbo 0
dl 58
loc 58
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 4 4 1
A check() 7 7 2
A getMessage() 9 9 2
A getOptions() 5 5 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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