LdapTools\Operation\LdapOperationInterface::getArguments PHP Метод

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

Gets an array of arguments that will be passed to the LDAP function for executing this operation.
public getArguments ( ) : array
Результат array
    public function getArguments();

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;
 }