14 lines
239 B
PHP
14 lines
239 B
PHP
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Interface HookQuizEndEventInterface.
|
|
*/
|
|
interface HookQuizEndEventInterface extends HookEventInterface
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function notifyQuizEnd();
|
|
}
|