For compliance with the new version of the table interface policy (T255803). This patch was created by an automated search & replace operation on the includes/ directory. Bug: T257789 Change-Id: I17e5e92e24c708ffc846945a136347670a3a20c7
19 lines
465 B
PHP
19 lines
465 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Diff\Hook;
|
|
|
|
/**
|
|
* @stable to implement
|
|
* @ingroup Hooks
|
|
*/
|
|
interface DifferenceEngineOldHeaderNoOldRevHook {
|
|
/**
|
|
* Use this hook to change the $oldHeader variable in cases when there is no old revision
|
|
*
|
|
* @since 1.35
|
|
*
|
|
* @param string &$oldHeader Empty string by default
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onDifferenceEngineOldHeaderNoOldRev( &$oldHeader );
|
|
}
|