Methods |
public
|
__construct(array $input): void
Create a new validated input container.
Create a new validated input container.
|
#
|
public
|
merge(array $items): static
Merge the validated input with the given array of additional data.
Merge the validated input with the given array of additional data.
|
#
|
public
|
all(array|mixed|null $keys = null): array
Get the raw, underlying input array.
Get the raw, underlying input array.
|
#
|
protected
|
data(string|null $key = null, mixed $default = null): mixed
Retrieve data from the instance.
Retrieve data from the instance.
|
#
|
public
|
keys(): array
Get the keys for all of the input.
Get the keys for all of the input.
|
#
|
public
|
input(string|null $key = null, mixed $default = null): mixed
Retrieve an input item from the validated inputs.
Retrieve an input item from the validated inputs.
|
#
|
public
|
dd(mixed ...$keys): never
Dump the validated inputs items and end the script.
Dump the validated inputs items and end the script.
|
#
|
public
|
dump(mixed $keys = []): $this
Dump the items.
|
#
|
public
|
toArray(): array
Get the instance as an array.
Get the instance as an array.
Implements
|
#
|
public
|
__get(string $name): mixed
Dynamically access input data.
Dynamically access input data.
|
#
|
public
|
__set(string $name, mixed $value): mixed
Dynamically set input data.
Dynamically set input data.
|
#
|
public
|
__isset($name): bool
Determine if an input item is set.
Determine if an input item is set.
|
#
|
public
|
__unset(string $name): void
Remove an input item.
|
#
|
public
|
offsetExists(mixed $key): bool
Determine if an item exists at an offset.
Determine if an item exists at an offset.
Implements
|
#
|
public
|
offsetGet(mixed $key): mixed
Get an item at a given offset.
Get an item at a given offset.
Implements
|
#
|
public
|
offsetSet(mixed $key, mixed $value): void
Set the item at a given offset.
Set the item at a given offset.
Implements
|
#
|
public
|
offsetUnset(string $key): void
Unset the item at a given offset.
Unset the item at a given offset.
Implements
|
#
|
public
|
getIterator(): ArrayIterator
Get an iterator for the input.
Get an iterator for the input.
Implements
|
#
|