Files
Chamilo/main/inc/lib/hook/HookLearningPathCreated.php
2025-04-10 12:49:05 +02:00

20 lines
481 B
PHP

<?php
/* For licensing terms, see /license.txt */
class HookLearningPathCreated extends HookEvent implements HookLearningPathCreatedEventInterface
{
protected function __construct()
{
parent::__construct('HookLearningPathCreated');
}
public function notifyCreated()
{
/** @var HookLearningPathCreatedObserverInterface $observer */
foreach ($this->observers as $observer) {
$observer->hookCreated($this);
}
}
}