HookSkypeObserverInterface.php 455 B

1234567891011121314151617181920
  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. * @package chamilo.library.hook
  7. */
  8. /**
  9. * Interface SkypeHookInterface
  10. */
  11. interface HookSkypeObserverInterface extends HookObserverInterface
  12. {
  13. /**
  14. * @param HookSkypeObserverInterface $hook
  15. *
  16. * @return int
  17. */
  18. public function hookEventSkype(HookSkypeEventInterface $hook);
  19. }