11 lines
276 B
PHP
11 lines
276 B
PHP
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Interface HookLearningPathEndObserverInterface.
|
|
*/
|
|
interface HookLearningPathEndObserverInterface extends HookObserverInterface
|
|
{
|
|
public function notifyLearningPathEnd(HookLearningPathEndEventInterface $event);
|
|
}
|