| home | true | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| heroImage | /logo.svg | |||||||||||||||
| actionText | Get Started → | |||||||||||||||
| actionLink | /guide/v3/ | |||||||||||||||
| features |
|
|||||||||||||||
| footer | MIT Licensed | Copyright © 2017-present Vladimir Yuldashev |
class Weather extends Intent
{
public function activators(): array
{
return [
Exact::make('/weather'),
Exact::make('Tell me the weather for today'),
];
}
public function run(ReceivedMessage $message): void
{
$this->reply('Weather is nice today.');
}
}