12 lines
292 B
PHP
12 lines
292 B
PHP
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Interface HookDocumentItemViewObserverInterface.
|
|
*/
|
|
interface HookDocumentItemViewObserverInterface extends HookObserverInterface
|
|
{
|
|
public function notifyDocumentItemView(HookDocumentItemViewEventInterface $hookvent): string;
|
|
}
|