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