for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Transmissor\Outgoing;
use BotMan\BotMan\Messages\Outgoing\OutgoingMessage as BotManOutgoingMessage;
class OutgoingMessage extends BotManOutgoingMessage
{
protected $actions = [];
public function addLink($text, $url)
$this->actions[] = [
'text' => $text,
'url' => $url
];
return $this;
}
public function getActions(): array
return $this->actions;