LdapTools\DomainConfiguration::getOperationInvoker PHP Method

getOperationInvoker() public method

Get the operation invoker used in the LDAP connection.
public getOperationInvoker ( ) : LdapTools\Operation\Invoker\LdapOperationInvokerInterface
return LdapTools\Operation\Invoker\LdapOperationInvokerInterface
    public function getOperationInvoker()
    {
        return $this->config['operationInvoker'];
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Sets the needed objects on the operation invoker.
  */
 protected function setupOperationInvoker()
 {
     $this->config->getOperationInvoker()->setEventDispatcher($this->dispatcher);
     $this->config->getOperationInvoker()->setConnection($this);
     if ($this->logger) {
         $this->config->getOperationInvoker()->setLogger($this->logger);
     }
 }