Merge "jquery.tablesorter: Silence an expected "sort-rowspan-error" warning"
[mediawiki.git] / includes / api / Hook / APIAfterExecuteHook.php
blob2e37361bd5e0a2074e51337e173977d74d37d61e
1 <?php
3 namespace MediaWiki\Api\Hook;
5 use MediaWiki\Api\ApiBase;
7 /**
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "APIAfterExecute" to register handlers implementing this interface.
11 * @stable to implement
12 * @ingroup Hooks
14 interface APIAfterExecuteHook {
15 /**
16 * This hook is called after calling the execute() method of an API module.
17 * Use this hook to extend core API modules.
19 * @since 1.35
21 * @param ApiBase $module
22 * @return bool|void True or no return value to continue or false to abort
24 public function onAPIAfterExecute( $module );