chamilo/chamilo-lms

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

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

namespace Chamilo\CoreBundle\Hook\Interfaces;

/**
 * Interface HookMyStudentsLpTrackingEventInterface.
 */
interface HookMyStudentsLpTrackingEventInterface extends HookEventInterface
{
    public function notifyTrackingHeader(): array;

    /**
     * @param int $lpId
     * @param int $studentId
     */
    public function notifyTrackingContent($lpId, $studentId): array;
}