- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Interfaces;
- /**
- * Validator Interface
- *
- * @autor ThurData <info@thrudata.ch>
- */
- interface BaseValidatorInterface
- {
- public function isValid($data, $additionalData = null);
-
- public function getErrorsList();
- }
|