Skip to content

Commit 432283d

Browse files
Merge branch '6.3' into 6.4
* 6.3: [Finder] Fix initial directory is opened twice typo fix Fix test Fix some return types in tests
2 parents 01b6848 + a95cbb3 commit 432283d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tests/Functional/app/AppKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function __sleep(): array
8989
return ['varDir', 'testCase', 'rootConfig', 'environment', 'debug'];
9090
}
9191

92-
public function __wakeup()
92+
public function __wakeup(): void
9393
{
9494
foreach ($this as $k => $v) {
9595
if (\is_object($v)) {

Tests/Kernel/ConcreteMicroKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function __sleep(): array
6868
throw new \BadMethodCallException('Cannot serialize '.__CLASS__);
6969
}
7070

71-
public function __wakeup()
71+
public function __wakeup(): void
7272
{
7373
throw new \BadMethodCallException('Cannot unserialize '.__CLASS__);
7474
}

Tests/Kernel/flex-style/src/FlexStyleMicroKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function __sleep(): array
6969
throw new \BadMethodCallException('Cannot serialize '.__CLASS__);
7070
}
7171

72-
public function __wakeup()
72+
public function __wakeup(): void
7373
{
7474
throw new \BadMethodCallException('Cannot unserialize '.__CLASS__);
7575
}

0 commit comments

Comments
 (0)