File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
HttpFoundation/Tests/Session/Storage Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -41,17 +41,17 @@ protected function validateType($value): void
41
41
{
42
42
}
43
43
44
- protected function normalizeValue ($ value )
44
+ protected function normalizeValue ($ value ): mixed
45
45
{
46
46
return null ;
47
47
}
48
48
49
- protected function mergeValues ($ leftSide , $ rightSide )
49
+ protected function mergeValues ($ leftSide , $ rightSide ): mixed
50
50
{
51
51
return null ;
52
52
}
53
53
54
- protected function finalizeValue ($ value )
54
+ protected function finalizeValue ($ value ): mixed
55
55
{
56
56
return null ;
57
57
}
@@ -61,7 +61,7 @@ public function hasDefaultValue(): bool
61
61
return true ;
62
62
}
63
63
64
- public function getDefaultValue ()
64
+ public function getDefaultValue (): mixed
65
65
{
66
66
return null ;
67
67
}
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ protected function tearDown(): void
51
51
@rmdir ($ this ->savePath );
52
52
}
53
53
54
- $ this ->savePath = null ;
55
54
ini_set ('session.save_handler ' , $ this ->initialSessionSaveHandler );
56
55
ini_set ('session.save_path ' , $ this ->initialSessionSavePath );
57
56
}
Original file line number Diff line number Diff line change 23
23
*/
24
24
class AbstractProxyTest extends TestCase
25
25
{
26
- protected MockObject & AbstractProxy $ proxy ;
26
+ protected AbstractProxy $ proxy ;
27
27
28
28
protected function setUp (): void
29
29
{
You can’t perform that action at this time.
0 commit comments