diff options
author | Edward Ly <contact@edward.ly> | 2025-07-15 07:26:39 -0700 |
---|---|---|
committer | Edward Ly <contact@edward.ly> | 2025-07-15 07:34:35 -0700 |
commit | fe7561d4d5d7fee8bda67d6197fed4ec3fca9406 (patch) | |
tree | 13659cb039ff1514b1b9e338498b23a26108fab2 | |
parent | 334aca6fbcb6a2e71b72f6f56ec378b71e973313 (diff) | |
download | nextcloud-server-feat/context-chat-ocp.tar.gz nextcloud-server-feat/context-chat-ocp.zip |
chore(ContextChat): add docblocks to ContentItem propertiesfeat/context-chat-ocp
Signed-off-by: Edward Ly <contact@edward.ly>
-rw-r--r-- | lib/public/ContextChat/ContentItem.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/public/ContextChat/ContentItem.php b/lib/public/ContextChat/ContentItem.php index 9de8289d536..2b5289ba350 100644 --- a/lib/public/ContextChat/ContentItem.php +++ b/lib/public/ContextChat/ContentItem.php @@ -24,12 +24,33 @@ class ContentItem { * @since 32.0.0 */ public function __construct( + /** + * @since 32.0.0 + */ public string $itemId, + /** + * @since 32.0.0 + */ public string $providerId, + /** + * @since 32.0.0 + */ public string $title, + /** + * @since 32.0.0 + */ public string $content, + /** + * @since 32.0.0 + */ public string $documentType, + /** + * @since 32.0.0 + */ public \DateTime $lastModified, + /** + * @since 32.0.0 + */ public array $users, ) { } |