diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-02 13:53:44 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-19 11:44:00 +0200 |
commit | 67e7a2635fad24113e9c86b25007c5648aa893d5 (patch) | |
tree | a6d77fe793e89112c26aa8d7154e743acda47fa1 /lib | |
parent | a4618cfea0710e919fcab9a80a61fcf4ed55759c (diff) | |
download | nextcloud-server-67e7a2635fad24113e9c86b25007c5648aa893d5.tar.gz nextcloud-server-67e7a2635fad24113e9c86b25007c5648aa893d5.zip |
Fix PHPDoc in OCP for new SetupResult class
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/SetupCheck/SetupResult.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/public/SetupCheck/SetupResult.php b/lib/public/SetupCheck/SetupResult.php index beb97d9d922..59d04323cd4 100644 --- a/lib/public/SetupCheck/SetupResult.php +++ b/lib/public/SetupCheck/SetupResult.php @@ -52,6 +52,11 @@ class SetupResult implements \JsonSerializable { return $this->linkToDoc; } + /** + * @brief Get an array representation of the result for API responses + * + * @since 28.0.0 + */ public function jsonSerialize(): array { return [ 'severity' => $this->severity, |