51 lines
926 B
PHP
51 lines
926 B
PHP
<?php
|
|
namespace MediaWiki\Content\Transform;
|
|
|
|
use MediaWiki\Page\PageReference;
|
|
use MediaWiki\Parser\ParserOptions;
|
|
|
|
/**
|
|
* @internal
|
|
* An object to hold preload transform params.
|
|
*/
|
|
class PreloadTransformParamsValue implements PreloadTransformParams {
|
|
/** @var PageReference */
|
|
private $page;
|
|
|
|
/** @var array */
|
|
private $params;
|
|
|
|
/** @var ParserOptions */
|
|
private $parserOptions;
|
|
|
|
public function __construct( PageReference $page, ParserOptions $parserOptions, array $params = [] ) {
|
|
$this->page = $page;
|
|
$this->parserOptions = $parserOptions;
|
|
$this->params = $params;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return PageReference
|
|
*/
|
|
public function getPage(): PageReference {
|
|
return $this->page;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getParams(): array {
|
|
return $this->params;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return ParserOptions
|
|
*/
|
|
public function getParserOptions(): ParserOptions {
|
|
return $this->parserOptions;
|
|
}
|
|
}
|