1 | <?php |
||
18 | class Integer extends Rule |
||
19 | { |
||
20 | /** |
||
21 | * A constant that will be used when the value does not represent an integer value. |
||
22 | */ |
||
23 | const NOT_AN_INTEGER = 'Integer::NOT_AN_INTEGER'; |
||
24 | |||
25 | /** |
||
26 | * The message templates which can be returned by this validator. |
||
27 | * |
||
28 | * @var array |
||
29 | */ |
||
30 | protected $messageTemplates = [ |
||
31 | self::NOT_AN_INTEGER => '{{ name }} must be an integer', |
||
32 | ]; |
||
33 | |||
34 | /** |
||
35 | * A constant indicated the integer check is strict |
||
36 | */ |
||
37 | const STRICT = true; |
||
38 | |||
39 | /** |
||
40 | * A constant indicating the integer check is *not* strict. |
||
41 | */ |
||
42 | const NOT_STRICT = false; |
||
43 | |||
44 | /** |
||
45 | * A bool denoting whether or not strict checking should be done. |
||
46 | * |
||
47 | * @var bool |
||
48 | */ |
||
49 | private $strict; |
||
50 | |||
51 | /** |
||
52 | * @param bool $strict |
||
53 | */ |
||
54 | 18 | public function __construct($strict = self::NOT_STRICT) |
|
58 | |||
59 | /** |
||
60 | * Validates if $value represents an integer. |
||
61 | * |
||
62 | * @param mixed $value |
||
63 | * @return bool |
||
64 | */ |
||
65 | 20 | public function validate($value) |
|
77 | |||
78 | /** |
||
79 | * {@inheritdoc} |
||
80 | */ |
||
81 | 7 | public function shouldBreakChainOnError() |
|
85 | } |
||
86 |