<?php
class HivpnModule_RegisterValidator extends AgaviValidator
{
/**
* Validates the input
*
* @return bool The input is valid number according to given parameters.
*/
protected function validate()
{
$parameterName = $this->getArgument();
$typeOfConnection = $this->getData($parameterName);
$this->export($typeOfConnection);
return true;
}
}
?>