File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/Formatter/Specialised Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ services:
57
57
networks :
58
58
- neo4j
59
59
ports :
60
- - " 11687 :7687"
61
- - " 11474 :7474"
60
+ - " 7687 :7687"
61
+ - " 7474 :7474"
62
62
environment :
63
63
<< : *common-env
64
64
NEO4j_server_bolt_advertised_address : localhost:11687
@@ -68,9 +68,9 @@ services:
68
68
<< : *common-cluster
69
69
hostname : server1
70
70
ports :
71
- - " 7687 :7687"
72
- - " 7473 :7473"
73
- - " 7474 :7474"
71
+ - " 11687 :7687"
72
+ - " 11473 :7473"
73
+ - " 11474 :7474"
74
74
environment :
75
75
<< : *common-core-env
76
76
NEO4j_server_bolt_advertised_address : localhost:7687
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ public function mapValueToType(mixed $value)
300
300
$ type = get_debug_type ($ value );
301
301
foreach ($ this ->rawToTypes as $ class => $ formatter ) {
302
302
/** @psalm-suppress ArgumentTypeCoercion */
303
- if ($ type === $ class || is_a ($ value , $ class, true )) {
303
+ if ($ type === $ class || is_a ($ value , $ class )) {
304
304
return $ formatter ($ value );
305
305
}
306
306
}
You can’t perform that action at this time.
0 commit comments