Files
Chamilo/main/inc/lib/hook/interfaces/HookLearningPathItemViewedObserverInterface.php
2025-08-14 22:37:50 +02:00

16 lines
409 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* Interface HookLearningPathItemViewedObserverInterface.
*/
interface HookLearningPathItemViewedObserverInterface extends HookObserverInterface
{
/**
* @param \HookLearningPathItemViewedEventInterface $event
*
* @return mixed
*/
public function hookLearningPathItemViewed(HookLearningPathItemViewedEventInterface $event);
}