Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
botman
/
botman
/
src
/
Messages
/
Outgoing
Location:
/home/zoteqbgb/public_html/vendor/botman/botman/src/Messages/Outgoing
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: OutgoingMessage.php
<?php namespace BotMan\BotMan\Messages\Outgoing; use BotMan\BotMan\Messages\Attachments\Attachment; class OutgoingMessage { /** @var string */ protected $message; /** @var \BotMan\BotMan\Messages\Attachments\Attachment */ protected $attachment; /** * IncomingMessage constructor. * @param string $message * @param Attachment $attachment */ public function __construct($message = null, Attachment $attachment = null) { $this->message = $message; $this->attachment = $attachment; } /** * @param string $message * @param Attachment $attachment * @return OutgoingMessage */ public static function create($message = null, Attachment $attachment = null) { return new static($message, $attachment); } /** * @param string $message * @return $this */ public function text($message) { $this->message = $message; return $this; } /** * @param \BotMan\BotMan\Messages\Attachments\Attachment $attachment * @return $this */ public function withAttachment(Attachment $attachment) { $this->attachment = $attachment; return $this; } /** * @return \BotMan\BotMan\Messages\Attachments\Attachment */ public function getAttachment() { return $this->attachment; } /** * @return string */ public function getText() { return $this->message; } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Actions
-
0755
2024-12-20 17:50
ðï¸
Rename
OutgoingMessage.php
1,506 bytes
0644
2024-12-20 17:50
âï¸
ðï¸
Rename
Question.php
3,091 bytes
0644
2024-12-20 17:50
âï¸
ðï¸
Rename
Chang
Apply