$this->add(array(
'name' => 'city',
'required' => true,
'validators' => array(
array(
'name' => 'StringLength',
'options' => array(
'min' => 5,
'max' => 255
),
),
),
));
There are MANY cities with names shorter than 5. Please reduce the minimum! Thanks!
There are MANY cities with names shorter than 5. Please reduce the minimum! Thanks!