LdapTools\Resolver\BatchValueResolver::batchCanConvert PHP Method

batchCanConvert() protected method

Determine if a specific batch is correctly formatted and needs conversion.
protected batchCanConvert ( Batch $batch ) : boolean
$batch LdapTools\BatchModify\Batch
return boolean
    protected function batchCanConvert(Batch $batch)
    {
        return $this->schema->hasConverter($batch->getAttribute()) && !$batch->isTypeRemoveAll();
    }