HookNotificationContentObserverInterface.php 495 B

123456789101112131415161718
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This file contains Hook observer interface for notification content
  5. * @package chamilo.library.hook
  6. */
  7. /**
  8. * Interface HookNotificationContentObserverInterface
  9. */
  10. interface HookNotificationContentObserverInterface extends HookObserverInterface
  11. {
  12. /**
  13. * @param HookNotificationContentEventInterface $hook
  14. * @return array
  15. */
  16. public function hookNotificationContent(HookNotificationContentEventInterface $hook);
  17. }