chamilo/chamilo-lms

View on GitHub
src/CoreBundle/Hook/Interfaces/HookNotificationContentObserverInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/* For licensing terms, see /license.txt */
/**
 * This file contains Hook observer interface for notification content.
 */

namespace Chamilo\CoreBundle\Hook\Interfaces;

/**
 * Interface HookNotificationContentObserverInterface.
 */
interface HookNotificationContentObserverInterface extends HookObserverInterface
{
    /**
     * @return array
     */
    public function hookNotificationContent(HookNotificationContentEventInterface $hook);
}