Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function __construct(IConnectionParameters $parameters)
 {
     if (!function_exists('socket_create')) {
         throw new ClientException('The socket extension must be loaded in order to be able to ' . 'use this connection class');
     }
     parent::__construct($parameters);
 }