Merge "rdbms: make transaction rounds apply DBO_TRX to DB_REPLICA connections"
[mediawiki.git] / includes / content / Transform / PreloadTransformParams.php
blob4e30bad64d6454c9be3da9cd99ff415c5653027f
1 <?php
2 namespace MediaWiki\Content\Transform;
4 use MediaWiki\Page\PageReference;
5 use MediaWiki\Parser\ParserOptions;
7 /**
8 * @since 1.37
9 * An interface to hold pre-load transform params.
11 interface PreloadTransformParams {
13 /**
14 * @return PageReference
16 public function getPage(): PageReference;
18 /**
19 * @return array
21 public function getParams(): array;
23 /**
24 * @return ParserOptions
26 public function getParserOptions(): ParserOptions;