Skip to content

Commit f94a57d

Browse files
committed
fix merge
1 parent 01d48d8 commit f94a57d

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

src/Symfony/Component/Config/Tests/Definition/BaseNodeTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@ protected function validateType($value): void
4141
{
4242
}
4343

44-
protected function normalizeValue($value)
44+
protected function normalizeValue($value): mixed
4545
{
4646
return null;
4747
}
4848

49-
protected function mergeValues($leftSide, $rightSide)
49+
protected function mergeValues($leftSide, $rightSide): mixed
5050
{
5151
return null;
5252
}
5353

54-
protected function finalizeValue($value)
54+
protected function finalizeValue($value): mixed
5555
{
5656
return null;
5757
}
@@ -61,7 +61,7 @@ public function hasDefaultValue(): bool
6161
return true;
6262
}
6363

64-
public function getDefaultValue()
64+
public function getDefaultValue(): mixed
6565
{
6666
return null;
6767
}

src/Symfony/Component/HttpFoundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ protected function tearDown(): void
5151
@rmdir($this->savePath);
5252
}
5353

54-
$this->savePath = null;
5554
ini_set('session.save_handler', $this->initialSessionSaveHandler);
5655
ini_set('session.save_path', $this->initialSessionSavePath);
5756
}

src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*/
2424
class AbstractProxyTest extends TestCase
2525
{
26-
protected MockObject&AbstractProxy $proxy;
26+
protected AbstractProxy $proxy;
2727

2828
protected function setUp(): void
2929
{

0 commit comments

Comments
 (0)