3 namespace MediaWiki\Api\Hook
;
5 use MediaWiki\Api\ApiBase
;
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "APIQueryAfterExecute" to register handlers implementing this interface.
11 * @stable to implement
14 interface APIQueryAfterExecuteHook
{
16 * This hook is called after calling the execute() method of an
17 * action=query submodule. Use this hook to extend core API modules.
21 * @param ApiBase $module
22 * @return bool|void True or no return value to continue or false to abort
24 public function onAPIQueryAfterExecute( $module );