Config: Fix parameter type for $fromDisk of method module()

This commit is contained in:
raviks789 2023-08-15 10:36:30 +02:00
parent b585ed25df
commit 1b9d977da4

View File

@ -405,7 +405,7 @@ class Config implements Countable, Iterator, Selectable
* *
* @param string $modulename The name of the module where to look for the requested configuration * @param string $modulename The name of the module where to look for the requested configuration
* @param string $configname The configuration name (without ini suffix) to read and return * @param string $configname The configuration name (without ini suffix) to read and return
* @param string $fromDisk When set true, the configuration will be read from disk, even * @param bool $fromDisk When set true, the configuration will be read from disk, even
* if it already has been read * if it already has been read
* *
* @return Config The requested configuration * @return Config The requested configuration