EVOLUTION-MANAGER
Edit File: 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 self($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; } }