File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ networks:
3
3
4
4
services :
5
5
app :
6
- user : ${UID-1000}:${GID-1000}
6
+ user : root: ${UID-1000}:${GID-1000}
7
7
build :
8
8
context : .
9
9
ports :
Original file line number Diff line number Diff line change @@ -56,15 +56,15 @@ public function create(): SymfonyClient
56
56
/** @var ClientBuilder<SummarizedResult<CypherMap>> $builder */
57
57
$ builder = ClientBuilder::create ();
58
58
59
- if ($ this ->driverConfig ) {
59
+ if (null !== $ this ->driverConfig ) {
60
60
$ builder = $ builder ->withDefaultDriverConfiguration ($ this ->makeDriverConfig ());
61
61
}
62
62
63
- if ($ this ->sessionConfiguration ) {
63
+ if (null !== $ this ->sessionConfiguration ) {
64
64
$ builder = $ builder ->withDefaultSessionConfiguration ($ this ->makeSessionConfig ());
65
65
}
66
66
67
- if ($ this ->transactionConfiguration ) {
67
+ if (null !== $ this ->transactionConfiguration ) {
68
68
$ builder = $ builder ->withDefaultTransactionConfiguration ($ this ->makeTransactionConfig ());
69
69
}
70
70
@@ -77,7 +77,7 @@ public function create(): SymfonyClient
77
77
);
78
78
}
79
79
80
- if ($ this ->defaultDriver ) {
80
+ if (null !== $ this ->defaultDriver ) {
81
81
$ builder = $ builder ->withDefaultDriver ($ this ->defaultDriver );
82
82
}
83
83
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ private function recursiveToArray(mixed $obj): mixed
134
134
{
135
135
if (is_array ($ obj )) {
136
136
return array_map (
137
- fn (mixed $ x ) => $ this ->recursiveToArray ($ x ),
137
+ fn (mixed $ x ): mixed => $ this ->recursiveToArray ($ x ),
138
138
$ obj
139
139
);
140
140
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ protected static function getKernelClass(): string
13
13
return TestKernel::class;
14
14
}
15
15
16
- public function testProfiler ()
16
+ public function testProfiler (): void
17
17
{
18
18
$ client = static ::createClient ();
19
19
$ client ->enableProfiler ();
You can’t perform that action at this time.
0 commit comments