12345678910111213141516171819 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * This file contains Hook observer interface for notification title
- * @package chamilo.library.hook
- */
- /**
- * Interface HookNotificationTitleObserverInterface
- */
- interface HookNotificationTitleObserverInterface extends HookObserverInterface
- {
- /**
- * @param HookNotificationTitleEventInterface $hook
- *
- * @return array
- */
- public function hookNotificationTitle(HookNotificationTitleEventInterface $hook);
- }
|