Files
Chamilo/main/inc/lib/hook/interfaces/HookNotificationContentObserverInterface.php
2025-08-14 22:37:50 +02:00

19 lines
442 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* This file contains Hook observer interface for notification content.
*
* @package chamilo.library.hook
*/
/**
* Interface HookNotificationContentObserverInterface.
*/
interface HookNotificationContentObserverInterface extends HookObserverInterface
{
/**
* @return array
*/
public function hookNotificationContent(HookNotificationContentEventInterface $hook);
}