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

getUsername() public method

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

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::getUsername