for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jerodev\PhpIrcClient\Messages;
use Jerodev\PhpIrcClient\Helpers\EventArgs;
use Jerodev\PhpIrcClient\IrcClient;
class MOTDMessage extends IrcMessage
{
public function __construct(string $message)
parent::__construct($message);
}
public function getEventArgs(): array
return [
new EventArgs('motd', [$this->payload])
];