diff options
Diffstat (limited to 'includes/Settings/Config')
-rw-r--r-- | includes/Settings/Config/ConfigSchema.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/Settings/Config/ConfigSchema.php b/includes/Settings/Config/ConfigSchema.php index eac685a88c19..8e357c492182 100644 --- a/includes/Settings/Config/ConfigSchema.php +++ b/includes/Settings/Config/ConfigSchema.php @@ -35,7 +35,7 @@ interface ConfigSchema { public function getDefaults(): array; /** - * Check if the $key has a default values set in the schema. + * Check if the $key has a default value set in the schema. * * @param string $key * @@ -44,7 +44,7 @@ interface ConfigSchema { public function hasDefaultFor( string $key ): bool; /** - * Get default value for the $key. + * Get the default value for the $key. * For keys that do not define a default, null is assumed. * * @param string $key |