| 1 | <?php | ||
| 14 | class Confirm extends AbstractValidator | ||
| 15 | { | ||
| 16 | |||
| 17 | static private $initialInput = null; | ||
| 18 | |||
| 19 | /** | ||
| 20 | * The error message as key for translation | ||
| 21 | * @var string | ||
| 22 | */ | ||
| 23 | protected $errorMessage = 'validator_not_same'; | ||
| 24 | |||
| 25 | /** | ||
| 26 | * Validate type string | ||
| 27 | * @param $data | ||
| 28 | * @return boolean | ||
| 29 | * @codeCoverageIgnore | ||
| 30 | */ | ||
| 31 | public function process($data) | ||
| 43 | |||
| 44 | } |