Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.161.182
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
musonza /
chat /
src /
Messages /
Delete
Unzip
Name
Size
Permission
Date
Action
SendMessageCommand.php
785
B
-rw-r--r--
2021-02-02 18:21
SendMessageCommandHandler.php
968
B
-rw-r--r--
2021-02-02 18:21
Save
Rename
<?php namespace Musonza\Chat\Messages; use Illuminate\Database\Eloquent\Model; use Musonza\Chat\Models\Conversation; class SendMessageCommand { public $body; public $conversation; public $type; public $participant; /** * @param Conversation $conversation The conversation * @param string $body The message body * @param Model $sender The sender identifier * @param string $type The message type */ public function __construct(Conversation $conversation, $body, Model $sender, $type = 'text') { $this->conversation = $conversation; $this->body = $body; $this->type = $type; $this->participant = $this->conversation->participantFromSender($sender); } }