ConsumeValidator.php 272 B

123456789101112131415161718
  1. <?php
  2. namespace UCore\Validator;
  3. /**
  4. * 验证成功后消费接口
  5. *
  6. * 用于在验证成功后执行一些后续操作
  7. */
  8. interface ConsumeValidator
  9. {
  10. /**
  11. * 验证成功后的消费操作
  12. *
  13. * @return void
  14. */
  15. public function consume();
  16. }