File tree Expand file tree Collapse file tree 2 files changed +1
-15
lines changed Expand file tree Collapse file tree 2 files changed +1
-15
lines changed Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff 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 *
You can’t perform that action at this time.
0 commit comments