chamilo/chamilo-lms

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/* For licensing terms, see /license.txt */

/**
 * This file contains Hook observer interface for notification title.
 */

namespace Chamilo\CoreBundle\Hook\Interfaces;

/**
 * Interface HookNotificationTitleObserverInterface.
 */
interface HookNotificationTitleObserverInterface extends HookObserverInterface
{
    /**
     * @return array
     */
    public function hookNotificationTitle(HookNotificationTitleEventInterface $hook);
}