HookNotificationTitleObserverInterface.php 490 B

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