From 2eb3b6c405e351fb7b76f89270f5f51eb6bd758d Mon Sep 17 00:00:00 2001 From: raviks789 <33730024+raviks789@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:43:33 +0200 Subject: [PATCH] `ResourceConfigForm`: Fix return type for `edit()` and `remove()` methods --- application/forms/Config/ResourceConfigForm.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/forms/Config/ResourceConfigForm.php b/application/forms/Config/ResourceConfigForm.php index fe12aca6e..937f128fa 100644 --- a/application/forms/Config/ResourceConfigForm.php +++ b/application/forms/Config/ResourceConfigForm.php @@ -98,7 +98,7 @@ class ResourceConfigForm extends ConfigForm * @param string $name The name of the resource to edit * @param array $values The values to edit the configuration with * - * @return array The edited configuration + * @return ConfigObject The edited configuration * * @throws InvalidArgumentException In case the resource does not exist */ @@ -134,7 +134,7 @@ class ResourceConfigForm extends ConfigForm * * @param string $name The name of the resource to remove * - * @return array The removed resource configuration + * @return ConfigObject The removed resource configuration * * @throws InvalidArgumentException In case the resource does not exist */