/**
  * Validate Zip Code for UK only
  *
  * @param string $value
  *
  * @return boolean
  */
 public function notEmptyZipCodeUK($value)
 {
     if ($this->_country == 'GB')
     {
         return SagepayValid::notEmpty($value);
     }
     return true;
 }