PHP Class Jyxo\Input\Validator\LessThan

..
Author: Jan Pěček
Inheritance: extends AbstractValidator
Afficher le fichier Open project: jyxo/php

Protected Properties

Свойство Type Description
$max integer Desired maximum value

Méthodes publiques

Méthode Description
__construct ( integer $max ) Constructor.
getMax ( ) : integer Returns the maximum value.
isValid ( mixed $value ) : boolean Validates a value.
setMax ( integer $max ) : self Sets the maximum value.

Method Details

__construct() public méthode

Sets maximum value.
public __construct ( integer $max )
$max integer Maximum value (value must be less)

getMax() public méthode

Returns the maximum value.
public getMax ( ) : integer
Résultat integer

isValid() public méthode

Validates a value.
public isValid ( mixed $value ) : boolean
$value mixed Input value
Résultat boolean

setMax() public méthode

Sets the maximum value.
public setMax ( integer $max ) : self
$max integer New maximum value
Résultat self

Property Details

$max protected_oe property

Desired maximum value
protected int $max
Résultat integer