From b224063b2bc2054b5823786f338e8ca2ffb14d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Thu, 27 Mar 2025 09:51:34 +0100 Subject: [PATCH] fix(developer_manual): typo on IAppConfig AppFramework service usage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- developer_manual/digging_deeper/config/appconfig.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/digging_deeper/config/appconfig.rst b/developer_manual/digging_deeper/config/appconfig.rst index ee4b021ec..c32c57670 100644 --- a/developer_manual/digging_deeper/config/appconfig.rst +++ b/developer_manual/digging_deeper/config/appconfig.rst @@ -26,7 +26,7 @@ Any of the methods below will automatically be scoped to your app, meaning you c ) {} public function getSomeConfig(): string { - return $this->appConfig->getValueString('mykey', 'default'); + return $this->appConfig->getAppValueString('mykey', 'default'); } }