Skip to content

1.1.0

Latest

Choose a tag to compare

@200MPH 200MPH released this 19 May 22:16

Get validated request parameters has changed in this release!

To get a particular key from validator you must use get() method as magic method no longer works here.

Good example:

$validated = $validator->validate();
$name = $validator->get('name');

Bad example:
$name = $validator->name;