LimeSurvey API - Master branch

ValidatorNumerical
in package
implements ValidatorInterface

Example config (optional min and max): 'tokenLength' => ['numerical' => true] or 'tokenLength' => ['numerical'] or 'tokenLength' => ['numerical' => ['min' => -1]] or 'tokenLength' => ['numerical' => ['max' => 50]] or 'tokenLength' => ['numerical' => ['min' => -1, 'max' => 50]]

Table of Contents

Interfaces

ValidatorInterface

Properties

$name  : string

Methods

normaliseConfigValue()  : mixed
Normalises the config value for this validator
validate()  : array<string|int, mixed>|bool
Validates the key and it's value based on the config.
getMax()  : int|false
getMin()  : int|false

Properties

Methods

normaliseConfigValue()

Normalises the config value for this validator

public normaliseConfigValue(array<string|int, mixed> $config) : mixed
Parameters
$config : array<string|int, mixed>

validate()

Validates the key and it's value based on the config.

public validate(string $key, mixed $value, array<string|int, mixed> $config, array<string|int, mixed> $data[, array<string|int, mixed> $options = [] ]) : array<string|int, mixed>|bool
Parameters
$key : string
$value : mixed
$config : array<string|int, mixed>
$data : array<string|int, mixed>
$options : array<string|int, mixed> = []
Tags
psalm-suppress

PossiblyFalseOperand

Return values
array<string|int, mixed>|bool

getMax()

private getMax(array<string|int, mixed> $config) : int|false
Parameters
$config : array<string|int, mixed>
Return values
int|false

getMin()

private getMin(array<string|int, mixed> $config) : int|false
Parameters
$config : array<string|int, mixed>
Return values
int|false

        
On this page

Search results