In my form\'s model, I have a custom validation function for a field defined in this way
class SignupForm extends Model { public function rules() {
You need to trigger $model->validate() somewhere if you are extending from class Model.
$model->validate()