wiki.techinc.nl/includes/Hook/MaintenanceShellStartHook.php
addshore d873fa15a2 Allow hooking into shell and eval maint scripts for convenience
First intended use in I11bc2b4b43a1eb0578be50a47485e233e15d8dba

Change-Id: I14e58d5f125236f9a95823c25a78a9ebab28fd17
2021-03-12 14:18:09 +00:00

17 lines
367 B
PHP

<?php
namespace MediaWiki\Hook;
/**
* @stable to implement
* @ingroup Hooks
*/
interface MaintenanceShellStartHook {
/**
* This hook is called before maintenance script shells start, such as eval.php and shell.php
*
* @since 1.36
* @return void This hook must not abort, it must return no value
*/
public function onMaintenanceShellStart() : void;
}