/**
  * @see sfValidatorBase
  */
 protected function doClean($value)
 {
     $clean = (string) $value;
     $tmp = '';
     if (!Validate_PL::pesel($clean, $tmp)) {
         throw new sfValidatorError($this, 'invalid');
     }
     return $clean;
 }