LdapTools\Operation\Invoker\LdapOperationInvoker::shouldSkipOperation PHP 메소드

shouldSkipOperation() 보호된 메소드

In that case the resulting batch operation will be empty but will have generated post/pre operations for it still. The most common scenario is group membership only changes.
protected shouldSkipOperation ( LdapTools\Operation\LdapOperationInterface $operation ) : boolean
$operation LdapTools\Operation\LdapOperationInterface
리턴 boolean
    protected function shouldSkipOperation(LdapOperationInterface $operation)
    {
        return $operation instanceof BatchModifyOperation && empty($operation->getBatchCollection()->toArray());
    }