┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/var/www/html/much-better-oil/wp-includes/php-ai-client/src/Messages/DTO
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: UserMessage.php
<?php declare (strict_types=1); namespace WordPress\AiClient\Messages\DTO; use WordPress\AiClient\Messages\Enums\MessageRoleEnum; /** * Represents a message from a user. * * This is a convenience class that automatically sets the role to USER. * * Important: Do not rely on `instanceof UserMessage` to determine the message role. * This is merely a helper class for construction. Always use `$message->getRole()` * to check the role of a message. * * @since 0.1.0 */ class UserMessage extends \WordPress\AiClient\Messages\DTO\Message { /** * Constructor. * * @since 0.1.0 * * @param MessagePart[] $parts The parts that make up this message. */ public function __construct(array $parts) { parent::__construct(MessageRoleEnum::user(), $parts); } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 Message.php
PHP
5.5 KB
2026-05-21 08:28
EDIT
📄 MessagePart.php
PHP
10.5 KB
2026-05-21 08:28
EDIT
📄 ModelMessage.php
PHP
868 B
2026-05-21 08:28
EDIT
📄 UserMessage.php
PHP
812 B
2026-05-21 08:28
EDIT