LdapTools\Operation\LdapOperationInterface::getServer PHP 메소드

getServer() 공개 메소드

Get the server that should be used for the operation.
public getServer ( ) : null | string
리턴 null | string
    public function getServer();

Usage Example

예제 #1
0
 /**
  * @param LdapOperationInterface $operation
  */
 public function setOperationDefaults(LdapOperationInterface $operation)
 {
     if (is_null($operation->getServer())) {
         $operation->setServer($this->connection->getServer());
     }
 }