upgrade
This commit is contained in:
30
main/inc/lib/hook/HookLearningPathEnd.php
Normal file
30
main/inc/lib/hook/HookLearningPathEnd.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
/* For licensing terms, see /license.txt */
|
||||
|
||||
/**
|
||||
* Class HookLearningPathEnd.
|
||||
*/
|
||||
class HookLearningPathEnd extends HookEvent implements HookLearningPathEndEventInterface
|
||||
{
|
||||
/**
|
||||
* HookLearningPathEnd constructor.
|
||||
*
|
||||
* @throws \Exception
|
||||
*/
|
||||
protected function __construct()
|
||||
{
|
||||
parent::__construct('HookLearningPathEndEvent');
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function hookLearningPathEnd()
|
||||
{
|
||||
/** @var \HookLearningPathEndObserverInterface $observer */
|
||||
foreach ($this->observers as $observer) {
|
||||
$observer->notifyLearningPathEnd($this);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user