Skip to content

Commit 0289c68

Browse files
Merge pull request #54042 from nextcloud/fix/noid/mark-searchkeys-as-internal
2 parents 0a6b82f + c15b7aa commit 0289c68

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

lib/private/AppConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ public function getApps(): array {
9898
*
9999
* @param string $app id of the app
100100
* @return list<string> list of stored config keys
101-
* @see searchKeys to not load lazy config keys
102101
*
103102
* @since 29.0.0
104103
*/
@@ -119,6 +118,7 @@ public function getKeys(string $app): array {
119118
* @param bool $lazy TRUE to search in lazy config keys
120119
* @return list<string> list of stored config keys
121120
* @since 32.0.0
121+
* @internal not publicly available before 32.
122122
*/
123123
public function searchKeys(string $app, string $prefix = '', bool $lazy = false): array {
124124
$this->assertParams($app);

lib/public/IAppConfig.php

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -66,25 +66,11 @@ public function getApps(): array;
6666
*
6767
* @param string $app id of the app
6868
* @return list<string> list of stored config keys
69-
* @see searchKeys to avoid loading lazy config keys
7069
*
7170
* @since 29.0.0
7271
*/
7372
public function getKeys(string $app): array;
7473

75-
/**
76-
* Returns list of keys stored in database, related to an app.
77-
* Please note that the values are not returned.
78-
*
79-
* @param string $app id of the app
80-
* @param string $prefix returns only keys starting with this value
81-
* @param bool $lazy TRUE to search in lazy config keys
82-
*
83-
* @return list<string> list of stored config keys
84-
* @since 32.0.0
85-
*/
86-
public function searchKeys(string $app, string $prefix = '', bool $lazy = false): array;
87-
8874
/**
8975
* Check if a key exists in the list of stored config values.
9076
*

0 commit comments

Comments
 (0)