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

getPassword() public method

Returns the specified password to access the OrientDB server.
public getPassword ( ) : string
return string
    public function getPassword()
    {
        return $this->password;
    }

Usage Example

示例#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::getPassword