| 1 | <?php |
||
| 12 | class SendAttachment implements Command |
||
| 13 | { |
||
| 14 | private $chat; |
||
| 15 | private $recipient; |
||
| 16 | private $attachment; |
||
| 17 | |||
| 18 | 3 | public function __construct(Chat $chat, User $recipient, Attachment $attachment) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * Get name. |
||
| 27 | * |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | 1 | public function getName(): string |
|
| 34 | |||
| 35 | 1 | public function getChat(): Chat |
|
| 39 | |||
| 40 | 1 | public function getRecipient(): User |
|
| 44 | |||
| 45 | 1 | public function getAttachment(): Attachment |
|
| 49 | } |
||
| 50 |