14 lines
262 B
PHP
14 lines
262 B
PHP
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Interface HookLearningPathEndEventInterface.
|
|
*/
|
|
interface HookLearningPathEndEventInterface extends HookEventInterface
|
|
{
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function hookLearningPathEnd();
|
|
}
|