ListenerInterface.php 606 B

123456789101112131415161718
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | [ 监听接口 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018-2020 rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: TABLE ME
  8. // +----------------------------------------------------------------------
  9. // | Date: 2020-08-25 16:18
  10. // +----------------------------------------------------------------------
  11. namespace library\interfaces;
  12. interface ListenerInterface
  13. {
  14. public function handle($event): void;
  15. }