Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/private/AppConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ public function getApps(): array {
*
* @param string $app id of the app
* @return list<string> list of stored config keys
* @see searchKeys to not load lazy config keys
*
* @since 29.0.0
*/
Expand All @@ -119,6 +118,7 @@ public function getKeys(string $app): array {
* @param bool $lazy TRUE to search in lazy config keys
* @return list<string> list of stored config keys
* @since 32.0.0
* @internal not publicly available before 32.
*/
public function searchKeys(string $app, string $prefix = '', bool $lazy = false): array {
$this->assertParams($app);
Expand Down
14 changes: 0 additions & 14 deletions lib/public/IAppConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,25 +66,11 @@ public function getApps(): array;
*
* @param string $app id of the app
* @return list<string> list of stored config keys
* @see searchKeys to avoid loading lazy config keys
*
* @since 29.0.0
*/
public function getKeys(string $app): array;

/**
* Returns list of keys stored in database, related to an app.
* Please note that the values are not returned.
*
* @param string $app id of the app
* @param string $prefix returns only keys starting with this value
* @param bool $lazy TRUE to search in lazy config keys
*
* @return list<string> list of stored config keys
* @since 32.0.0
*/
public function searchKeys(string $app, string $prefix = '', bool $lazy = false): array;

/**
* Check if a key exists in the list of stored config values.
*
Expand Down
Loading