File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ services:
60
60
neo4j :
61
61
networks :
62
62
- neo4j
63
- image : neo4j:3.5 -enterprise
63
+ image : neo4j:4.4 -enterprise
64
64
healthcheck :
65
65
test : " wget -q --method=HEAD http://localhost:7474 || exit 1"
66
66
interval : 30s
@@ -76,7 +76,7 @@ services:
76
76
env_file :
77
77
- .env
78
78
core1 :
79
- image : neo4j:3.5 -enterprise
79
+ image : neo4j:4.4 -enterprise
80
80
healthcheck :
81
81
test : " wget -q --method=HEAD http://localhost:7474 || exit 1"
82
82
interval : 30s
@@ -97,7 +97,7 @@ services:
97
97
- .env
98
98
99
99
core2 :
100
- image : neo4j:3.5 -enterprise
100
+ image : neo4j:4.4 -enterprise
101
101
healthcheck :
102
102
test : " wget -q --method=HEAD http://localhost:7474 || exit 1"
103
103
interval : 30s
@@ -118,7 +118,7 @@ services:
118
118
- .env
119
119
120
120
core3 :
121
- image : neo4j:3.5 -enterprise
121
+ image : neo4j:4.4 -enterprise
122
122
healthcheck :
123
123
test : " wget -q --method=HEAD http://localhost:7474 || exit 1"
124
124
interval : 30s
@@ -139,7 +139,7 @@ services:
139
139
- .env
140
140
141
141
readreplica1 :
142
- image : neo4j:3.5 -enterprise
142
+ image : neo4j:4.4 -enterprise
143
143
healthcheck :
144
144
test : " wget -q --method=HEAD http://localhost:7474 || exit 1"
145
145
interval : 30s
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<psalm
3
3
checkForThrowsInGlobalScope =" true"
4
- loadXdebugStub =" true"
5
4
findUnusedVariablesAndParams =" true"
6
5
ensureArrayIntOffsetsExist =" true"
7
6
ensureArrayStringOffsetsExist =" true"
Original file line number Diff line number Diff line change 13
13
14
14
namespace Laudis \Neo4j \Bolt ;
15
15
16
- use Laudis \Neo4j \Enum \ConnectionProtocol ;
17
16
use function array_key_exists ;
18
17
use function array_splice ;
19
18
use Bolt \protocol \V4 ;
22
21
use Generator ;
23
22
use Iterator ;
24
23
use Laudis \Neo4j \Common \BoltConnection ;
24
+ use Laudis \Neo4j \Enum \ConnectionProtocol ;
25
25
26
26
/**
27
27
* @psalm-import-type BoltCypherStats from \Laudis\Neo4j\Contracts\FormatterInterface
@@ -96,7 +96,7 @@ public function iterator(): Generator
96
96
}
97
97
98
98
if ($ this ->finishedCallback ) {
99
- call_user_func ($ this ->finishedCallback , $ this ->meta );
99
+ call_user_func ($ this ->finishedCallback , $ this ->meta ?? [] );
100
100
}
101
101
}
102
102
You can’t perform that action at this time.
0 commit comments