HookCreateUserEventInterface.php 451 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. * @package chamilo.library.hook
  7. */
  8. /**
  9. * Interface HookCreateUserEventInterface
  10. */
  11. interface HookCreateUserEventInterface extends HookEventInterface
  12. {
  13. /**
  14. * Update all the observers
  15. * @param int $type
  16. *
  17. * @return int
  18. */
  19. public function notifyCreateUser($type);
  20. }