Skip to content

Commit efea48a

Browse files
committed
wip
1 parent 91f5d70 commit efea48a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/node.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ $node->removeLabels();
4141
Properties are key-value-pairs which can store data within a node.
4242
The keys must be unique and [should be written in camelCase](https://neo4j.com/docs/cypher-manual/current/styleguide/#cypher-styleguide-casing).
4343

44-
!> **Note**: While this library supports arrays and objects as property values, Neo4j has limited support for those types.
44+
!> **Note**: While this library supports arrays and objects as property values, Neo4j has limited support for those
45+
types.
4546
Be sure that those types are correctly handled.
4647

4748
```php

docs/relation.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ $relation->getType();
3131
Properties are key-value-pairs which can store data within a relationship.
3232
The keys must be unique and [should be written in camelCase](https://neo4j.com/docs/cypher-manual/current/styleguide/#cypher-styleguide-casing).
3333

34-
!> **Note**: While this library supports arrays and objects as property values, Neo4j has limited support for those types.
35-
Be sure that those types are correctly handled.
34+
!> **Note**: While this library supports arrays and objects as property values, Neo4j has limited support for those
35+
types.
36+
Be sure that those types are correctly handled.
3637

3738
```php
3839
// add property to a relationship:

0 commit comments

Comments
 (0)