Doctrine\OrientDB\Binding\BindingParameters::getPassword PHP Метод

getPassword() публичный Метод

Returns the specified password to access the OrientDB server.
public getPassword ( ) : string
Результат 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