Aerospike\LDT\LList::updateMany PHP Method

updateMany() public method

The elements updated must be consistently the same type (string, integer, array).
public updateMany ( array $values ) : integer
$values array
return integer status code of the operation
    public function updateMany(array $values)
    {
        $status = $this->client->apply($this->key, 'llist', 'update', array($this->bin, $values));
        $this->processStatusCode($status);
        return $this->errorno;
    }