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

17 lines
378 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* Interface HookDocumentActionObserverInterface.
*/
interface HookDocumentActionObserverInterface extends HookObserverInterface
{
/**
* @param \HookDocumentActionEventInterface $hookvent
*
* @return mixed
*/
public function notifyDocumentAction(HookDocumentActionEventInterface $hookvent);
}