2021-11-09 17:29:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace MediaWiki\Settings\Config;
|
|
|
|
|
|
|
|
|
|
use Config;
|
|
|
|
|
use HashConfig;
|
2022-02-11 10:06:46 +00:00
|
|
|
use MediaWiki\Config\IterableConfig;
|
2021-11-09 17:29:14 +00:00
|
|
|
|
2022-02-10 21:12:10 +00:00
|
|
|
class ArrayConfigBuilder extends ConfigBuilderBase {
|
2022-01-21 20:07:42 +00:00
|
|
|
|
2021-11-09 17:29:14 +00:00
|
|
|
/** @var array */
|
2021-11-11 17:50:14 +00:00
|
|
|
protected $config = [];
|
|
|
|
|
|
2022-02-10 21:12:10 +00:00
|
|
|
protected function has( string $key ): bool {
|
|
|
|
|
return array_key_exists( $key, $this->config );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function get( string $key ) {
|
|
|
|
|
return $this->config[$key] ?? null;
|
2021-11-09 17:29:14 +00:00
|
|
|
}
|
|
|
|
|
|
2022-02-10 21:12:10 +00:00
|
|
|
protected function update( string $key, $value ) {
|
|
|
|
|
$this->config[$key] = $value;
|
2021-11-09 17:29:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Build the configuration.
|
|
|
|
|
*
|
2022-02-11 10:06:46 +00:00
|
|
|
* @todo Once we can use PHP 7.4, change the return type declaration to IterableConfig.
|
|
|
|
|
* @return IterableConfig
|
2021-11-09 17:29:14 +00:00
|
|
|
*/
|
|
|
|
|
public function build(): Config {
|
|
|
|
|
return new HashConfig( $this->config );
|
|
|
|
|
}
|
|
|
|
|
}
|