Doctrine\OrientDB\Binding\BindingParameters::getPort PHP Method

getPort() public method

Returns the specified TCP port pointing to the OrientDB server.
public getPort ( ) : integer
return integer
    public function getPort()
    {
        return $this->port;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Instantiates a new binding.
  *
  * @param BindingParameters $parameters
  * @param HttpClientAdapterInterface $adapter
  */
 public function __construct(BindingParameters $parameters, HttpClientAdapterInterface $adapter = null)
 {
     $this->server = "{$parameters->getHost()}:{$parameters->getPort()}";
     $this->database = $parameters->getDatabase();
     $this->adapter = $adapter ?: new CurlClientAdapter(new CurlClient());
     $this->setAuthentication($parameters->getUsername(), $parameters->getPassword());
 }
All Usage Examples Of Doctrine\OrientDB\Binding\BindingParameters::getPort