wiki.techinc.nl/includes/parser/Hook/ParserFirstCallInitHook.php
DannyS712 bb108d1349 Update description of ParserFirstCallInitHook per hooks.txt
Change-Id: I900975ad73a64bf7b9d83df4ee728005d4fb5d70
2020-05-01 21:34:05 +00:00

21 lines
432 B
PHP

<?php
namespace MediaWiki\Hook;
use Parser;
/**
* @stable for implementation
* @ingroup Hooks
*/
interface ParserFirstCallInitHook {
/**
* This hook is called when the parser initialises for the first time.
*
* @since 1.35
*
* @param Parser $parser Parser object being initialised
* @return bool|void True or no return value to continue or false to abort
*/
public function onParserFirstCallInit( $parser );
}