Example #1
0
 public function clientNew($socket)
 {
     $this->clientsId++;
     $client = new Client();
     $client->setSocket($socket);
     $client->setId($this->clientsId);
     $client->setServer($this);
     $this->clients[$this->clientsId] = $client;
     return $client;
 }