chamilo/chamilo-lms

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

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

namespace Chamilo\CoreBundle\Hook\Interfaces;

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

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