Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 18.222.24.23
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
nexus-groups.online /
app /
Channels /
Delete
Unzip
Name
Size
Permission
Date
Action
SmsMessage.php
813
B
-rw-r--r--
2021-08-25 14:13
TwilioSms.php
903
B
-rw-r--r--
2021-10-23 13:03
Save
Rename
<?php namespace App\Channels; class SmsMessage { /** * @var string */ private $_recipient; /** * @var string */ private $_content; /** * @return string */ public function getRecipient(): string { return $this->_recipient; } /** * @param string $recipient * @return $this */ public function setRecipient(string $recipient): SmsMessage { $this->_recipient = $recipient; return $this; } /** * @return string */ public function getContent(): string { return $this->_content; } /** * @param string $content * @return $this */ public function setContent(string $content): SmsMessage { $this->_content = $content; return $this; } }