You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You have an error in \Phalcon\Validation\Validator\Identical description example.
Now:
usePhalcon\Validation\Validator\Identical;
$validator->add('terms', newIdentical(array(
'accepted' => 'yes',
'message' => 'Terms and conditions must be accepted'
)));
must be
usePhalcon\Validation\Validator\Identical;
$validator->add('terms', newIdentical(array(
'value' => 'yes',
'message' => 'Terms and conditions must be accepted'
)));
The text was updated successfully, but these errors were encountered:
You have an error in \Phalcon\Validation\Validator\Identical description example.
Now:
must be
The text was updated successfully, but these errors were encountered: