1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36:
<?php
/**
* Class AbstractValidator | AbstractValidator.php
* @package Faulancer\Form
*/
namespace Faulancer\Form\Validator;
/**
* Class AbstractValidator
*/
abstract class AbstractValidator
{
/**
* Define the error message in case of validation fails
* @var string
*/
protected $errorMessage = '';
/**
* Return the error message
* @return string
*/
public function getMessage()
{
return $this->errorMessage;
}
/**
* Init method which must be implemented by every validator
* @param mixed $data
* @return mixed
*/
abstract public function process($data);
}