adapt minor changers / fix tests

This commit is contained in:
Philipp 2023-03-27 19:35:02 +02:00
parent 73aaedac97
commit c2d11328cc
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
3 changed files with 6 additions and 6 deletions

View file

@ -59,12 +59,12 @@ interface IManageConfigValues
public function get(string $cat, string $key = null, $default_value = null);
/**
* Returns true, if the current config cannot be changed
* Returns true, if the current config can be changed
*
* @param string $cat The category of the configuration value
* @param string $key The configuration key to query
*
* @return bool true, if set is disabled
* @return bool true, if writing is possible
*/
public function isWritable(string $cat, string $key): bool;