wiki.techinc.nl/includes/diff/Hook/DifferenceEngineViewHeaderHook.php

22 lines
426 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Diff\Hook;
use DifferenceEngine;
/**
* @stable to implement
* @ingroup Hooks
*/
interface DifferenceEngineViewHeaderHook {
/**
* This hook is called before diff display.
*
* @since 1.35
*
* @param DifferenceEngine $differenceEngine
* @return bool|void True or no return value to continue or false to abort
*/
public function onDifferenceEngineViewHeader( $differenceEngine );
}