FRED™  3.0
FRED™: Framework for Rapid and Easy Development
Client.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Rsi\Fred\Socket;
4 
5 class Client{
6 
7  public $connection = null;
8  public $params = null;
9  public $controller = null;
10 
12  $this->connection = $connection;
13  $this->params = $params;
14  $this->controller = $controller;
15  }
16 
17 }
__construct($connection, $params, $controller)
Definition: Client.php:11