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