MediaWiki master
SettingsSource.php
Go to the documentation of this file.
1<?php
2
4
6use Stringable;
7
16interface SettingsSource extends Stringable {
24 public function load(): array;
25}
A SettingsSource is meant to represent any kind of local or remote store from which settings can be r...
load()
Loads and returns all settings from this source as an associative array.