PHP Class Jyxo\Input\Validator\StringLengthLessThan

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

Protected Properties

Свойство Type Description
$max integer Maximal string length.

Méthodes publiques

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

Method Details

__construct() public méthode

Constructor.
public __construct ( integer $max )
$max integer Maximal string length (value length must be lower)

getMax() public méthode

Returns the maximal string length.
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 maximal string length.
public setMax ( integer $max ) : self
$max integer Maximal string length
Résultat self

Property Details

$max protected_oe property

Maximal string length.
protected int $max
Résultat integer