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

getLdapFunction() 공개 메소드

Gets the name of the LDAP function needed to execute this operation.
public getLdapFunction ( ) : string
리턴 string
    public function getLdapFunction();

Usage Example

예제 #1
0
 /**
  * {@inheritdoc}
  */
 public function execute(LdapOperationInterface $operation)
 {
     $result = @call_user_func($operation->getLdapFunction(), $this->connection->getConnection(), ...$operation->getArguments());
     if ($result === false) {
         throw new LdapConnectionException(sprintf('LDAP %s Operation Error. Diagnostic message: "%s"', $operation->getName(), $this->connection->getDiagnosticMessage()));
     }
     return $result;
 }