BaseValidatorInterface.php 278 B

12345678910111213141516
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Interfaces;
  3. /**
  4. * Validator Interface
  5. *
  6. * @autor ThurData <info@thurdata.ch>
  7. */
  8. interface BaseValidatorInterface
  9. {
  10. public function isValid($data, $additionalData = null);
  11. public function getErrorsList();
  12. }