Skip to content

Commit 0b11e78

Browse files
committed
Merge branch 'master' of github.com:graphaware/neo4j-php-client
2 parents ca30a94 + d722e22 commit 0b11e78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ $query = "MATCH (n:Person)-[:FOLLOWS]->(friend) RETURN n.name, collect(friend) a
124124
$result = $client->run($query);
125125

126126
foreach ($result->getRecords() as $record) {
127-
echo sprintf('Person name is : %s and has %d number of friends', $record->value('name'), count($record->value('friends'));
127+
echo sprintf('Person name is : %s and has %d number of friends', $record->value('name'), count($record->value('friends')));
128128
}
129129
```
130130

0 commit comments

Comments
 (0)