}
$code .= "
\$attrs[$index]->verify_type_constraint_error(
- '$key', \$_, \$attrs[$index]->type_constraint
+ '$key', \$value, \$attrs[$index]->type_constraint
)
}
";
if ($attr->has_type_constraint) {
$code .= "{
unless (\$attrs[$index]->{type_constraint}->check(\$value)) {
- \$attrs[$index]->verify_type_constraint_error('$key', \$_, \$attrs[$index]->type_constraint)
+ \$attrs[$index]->verify_type_constraint_error('$key', \$value, \$attrs[$index]->type_constraint)
}
}";
}