protected function doClean($values)
 {
     $size = 0;
     foreach (array('nametype' => array(Petition::NAMETYPE_SPLIT => 2, Petition::NAMETYPE_FULL => 1), 'with_address' => array(0 => 0, '0' => 0, 1 => 1, '1' => 1, 2 => 2, '2' => 2), 'with_country' => array(0 => 0, '0' => 0, 1 => 1, '1' => 1), 'with_comments' => array(0 => 0, '0' => 0, 1 => 1, '1' => 2)) as $field => $opt) {
         $size += $opt[$values[$field]];
     }
     $errorSchema = new sfValidatorErrorSchema($this);
     if ($size > 5) {
         $errorSchema->addError(new sfValidatorError($this, 'You have selected too many form fields.'), 'customise');
     }
     if (!$values['with_country'] && !$values['default_country']) {
         $errorSchema->addError(new sfValidatorError($this, 'Required if you do not ask for country.'), 'default_country');
     }
     if ($errorSchema->count()) {
         throw $errorSchema;
     }
     return $values;
 }
 /**
  * @see sfValidatorBase
  */
 protected function doClean($value)
 {
     $clean = $value;
     $errors = new sfValidatorErrorSchema($this);
     foreach ($this->validators as $validator) {
         try {
             $clean = $validator->clean($clean);
         } catch (sfValidatorError $e) {
             $errors->addError($e);
             if ($this->getOption('halt_on_error')) {
                 break;
             }
         }
     }
     if ($errors->count()) {
         if ($this->getMessage('invalid')) {
             throw new sfValidatorError($this, 'invalid', array('value' => $value));
         }
         throw $errors;
     }
     return $clean;
 }