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

22 lines
402 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Diff\Hook;
use DifferenceEngine;
/**
* @stable for implementation
* @ingroup Hooks
*/
interface AbortDiffCacheHook {
/**
* Use this hook to cancel the caching of a diff.
*
* @since 1.35
*
* @param DifferenceEngine $diffEngine
* @return bool|void True or no return value to continue or false to abort
*/
public function onAbortDiffCache( $diffEngine );
}