| 1 | <?php |
||
| 12 | class SendMessage implements Command |
||
| 13 | { |
||
| 14 | private $chat; |
||
| 15 | private $recipient; |
||
| 16 | private $text; |
||
| 17 | private $template; |
||
| 18 | |||
| 19 | 4 | public function __construct(Chat $chat, User $recipient, string $text, Template $template = null) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * Get name. |
||
| 29 | * |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | 1 | public function getName(): string |
|
| 36 | |||
| 37 | 1 | public function getChat(): Chat |
|
| 41 | |||
| 42 | 1 | public function getRecipient(): User |
|
| 46 | |||
| 47 | 1 | public function getText(): string |
|
| 51 | |||
| 52 | 1 | public function getTemplate(): ?Template |
|
| 56 | } |
||
| 57 |