Ejemplo n.º 1
0
 public function __construct($name, $seat, $chips, $socketConnection, $connectionManager)
 {
     parent::__construct($name, $seat, $chips);
     $this->connection = new Connection($this, $socketConnection, $connectionManager);
 }
Ejemplo n.º 2
0
 public function __construct($name, $seat, $chips, ConnectionManager $connectionManager)
 {
     parent::__construct($name, $seat, $chips);
     $this->connectionManager = $connectionManager;
 }