HookSkypeEventInterface.php 449 B

1234567891011121314151617181920212223
  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 HookSkypeEventInterface.
  11. */
  12. interface HookSkypeEventInterface extends HookEventInterface
  13. {
  14. /**
  15. * Update all the observers.
  16. *
  17. * @param int $type
  18. *
  19. * @return int
  20. */
  21. public function notifySkype($type);
  22. }