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