chamilo/chamilo-lms

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

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

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

namespace Chamilo\CoreBundle\Hook\Interfaces;

/**
 * Interface HookNotificationTitleEventInterface.
 */
interface HookNotificationTitleEventInterface extends HookEventInterface
{
    /**
     * @param int $type
     *
     * @return array
     */
    public function notifyNotificationTitle($type);
}