First intended use in I11bc2b4b43a1eb0578be50a47485e233e15d8dba Change-Id: I14e58d5f125236f9a95823c25a78a9ebab28fd17
17 lines
367 B
PHP
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;
|
|
}
|