Can you show what it would be like to send a message to the client directly from another controller? Something like that
`<?php
namespace App\Controllers;
use WebSocket\Client;
class Dashboard extends BaseController
{
protected function sendNotification($id_user, $message){
}
`