neo4jphp
neo4jphp copied to clipboard
Wrong data value returned in Row in case of non-existent index
Bug in case of accessing non-existent column in Row class:
$columns = array('name');
$data = array('Brenda');
$row = new Row($this->client, $columns, $data);
echo $row['age'];
// Brenda ???