fix(developer_manual): typo on IAppConfig AppFramework service usage

Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
This commit is contained in:
John Molakvoæ
2025-03-27 09:51:34 +01:00
committed by skjnldsv
parent ae606825e8
commit b224063b2b

View File

@@ -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');
}
}