Methods |
public
|
get(string $key, string|int|float|bool|null $default = null): string|int|float|bool|null
Returns a scalar input value by name.
Returns a scalar input value by name.
Parameters
$default |
The default value if the input key does not exist
|
Overrides
|
#
|
public
|
replace(array $inputs = []): void
Replaces the current input values by a new set.
Replaces the current input values by a new set.
Overrides
|
#
|
public
|
add(array $inputs = []): void
Adds input values.
|
#
|
public
|
set(string $key, string|int|float|bool|array|null $value): void
Sets an input by name.
|
#
|
public
|
getEnum<T is BackedEnum>(string $key, class-string<T> $class, ?T $default = null): ?T
Returns the parameter value converted to an enum.
Returns the parameter value converted to an enum.
Overrides
|
#
|
public
|
getString(string $key, string $default = ''): string
Returns the parameter value converted to string.
Returns the parameter value converted to string.
Overrides
|
#
|
public
|
filter(string $key, mixed $default = null, int $filter = FILTER_DEFAULT, mixed $options = []): mixed
Filter key.
Parameters
$filter |
FILTER_* constant
|
$options |
Flags from FILTER_* constants
|
Overrides
|
#
|