This patch ensures that we know which arrays are lists (JsonSchema type "array") and which are maps (JsonSchema type "object"). We can then default to array_merge for lists and to array_plus for maps. This seems clearer than requiring an explicit merge strategy to be declared for all arrays. This patch specified a mergeTrategy for some config variables that need behavior different from the default. This patch also changes the merging behavior to allow non-array values to replace arrays and vice versa. It also changes the behavior of defaults to allow falsy values to override non-falsy defaults. Bug: T300129 Change-Id: Ia7b0c0250af6a957eac1efb554fb47511f5e093f
35 lines
723 B
PHP
35 lines
723 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Settings\Config;
|
|
|
|
use Config;
|
|
use HashConfig;
|
|
use MediaWiki\Config\IterableConfig;
|
|
|
|
class ArrayConfigBuilder extends ConfigBuilderBase {
|
|
|
|
/** @var array */
|
|
protected $config = [];
|
|
|
|
protected function has( string $key ): bool {
|
|
return array_key_exists( $key, $this->config );
|
|
}
|
|
|
|
protected function get( string $key ) {
|
|
return $this->config[$key] ?? null;
|
|
}
|
|
|
|
protected function update( string $key, $value ) {
|
|
$this->config[$key] = $value;
|
|
}
|
|
|
|
/**
|
|
* Build the configuration.
|
|
*
|
|
* @todo Once we can use PHP 7.4, change the return type declaration to IterableConfig.
|
|
* @return IterableConfig
|
|
*/
|
|
public function build(): Config {
|
|
return new HashConfig( $this->config );
|
|
}
|
|
}
|