mirror of
https://github.com/nextcloud/server.git
synced 2026-03-26 12:25:16 -04:00
docs(IConfig): fix wrong doc block type for $key on setAppValue
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
0ef58c96ab
commit
866ccae542
2 changed files with 2 additions and 7 deletions
|
|
@ -3298,11 +3298,6 @@
|
|||
<code><![CDATA[ActivitySettings[]]]></code>
|
||||
</MoreSpecificReturnType>
|
||||
</file>
|
||||
<file src="lib/private/AllConfig.php">
|
||||
<MoreSpecificImplementedParamType>
|
||||
<code><![CDATA[$key]]></code>
|
||||
</MoreSpecificImplementedParamType>
|
||||
</file>
|
||||
<file src="lib/private/App/DependencyAnalyzer.php">
|
||||
<InvalidNullableReturnType>
|
||||
<code><![CDATA[bool]]></code>
|
||||
|
|
|
|||
|
|
@ -112,8 +112,8 @@ interface IConfig {
|
|||
* Writes a new app wide value
|
||||
*
|
||||
* @param string $appName the appName that we want to store the value under
|
||||
* @param string|float|int $key the key of the value, under which will be saved
|
||||
* @param string $value the value that should be stored
|
||||
* @param string $key the key of the value, under which will be saved
|
||||
* @param string|float|int $value the value that should be stored
|
||||
* @return void
|
||||
* @since 6.0.0
|
||||
* @deprecated 29.0.0 Use {@see IAppConfig} directly
|
||||
|
|
|
|||
Loading…
Reference in a new issue