HookResubscribeObserverInterface.php 482 B

123456789101112131415161718192021
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This file contains all Hook interfaces and their relation.
  5. * They are used for Hook classes.
  6. *
  7. * @package chamilo.library.hook
  8. */
  9. /**
  10. * Interface ResubscribeHookInterface.
  11. */
  12. interface HookResubscribeObserverInterface extends HookObserverInterface
  13. {
  14. /**
  15. * @param HookResubscribeEventInterface $hook
  16. *
  17. * @return int
  18. */
  19. public function hookResubscribe(HookResubscribeEventInterface $hook);
  20. }