diff options
author | Joas Schilling <coding@schilljs.com> | 2024-02-14 20:48:27 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-02-14 20:50:08 +0100 |
commit | 42be7a5d74d1cd4d8edc0ba52854f1bb73cd67d0 (patch) | |
tree | 85ec146d450a0aceaafbc926f94b32dff442af7a /lib/public/Dashboard | |
parent | 887c061fc8de23848095d71b567a8ad413c7f9b3 (diff) | |
download | nextcloud-server-42be7a5d74d1cd4d8edc0ba52854f1bb73cd67d0.tar.gz nextcloud-server-42be7a5d74d1cd4d8edc0ba52854f1bb73cd67d0.zip |
fix(OCP): Add since tag for all constants
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Dashboard')
-rw-r--r-- | lib/public/Dashboard/Model/WidgetButton.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/public/Dashboard/Model/WidgetButton.php b/lib/public/Dashboard/Model/WidgetButton.php index 480249b539f..57ea06ec6b1 100644 --- a/lib/public/Dashboard/Model/WidgetButton.php +++ b/lib/public/Dashboard/Model/WidgetButton.php @@ -29,8 +29,19 @@ namespace OCP\Dashboard\Model; * @since 25.0.0 */ class WidgetButton { + /** + * @since 25.0.0 + */ public const TYPE_NEW = 'new'; + + /** + * @since 25.0.0 + */ public const TYPE_MORE = 'more'; + + /** + * @since 25.0.0 + */ public const TYPE_SETUP = 'setup'; private string $type; |