Skip to content

Commit d447691

Browse files
committed
add missing strict typing
1 parent c1c26ee commit d447691

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Functional/DbManager/PHPCR.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function loadFixtures(array $classes, bool $initialize = false): void
7575
/**
7676
* @param class-string|FixtureInterface $class
7777
*/
78-
public function loadFixtureClass(Loader $loader, $class)
78+
public function loadFixtureClass(Loader $loader, $class): void
7979
{
8080
if (\is_object($class)) {
8181
$fixture = $class;
@@ -121,7 +121,7 @@ public function createTestNode(): void
121121
$session->save();
122122
}
123123

124-
private function getExecutor($initialize = false): PHPCRExecutor
124+
private function getExecutor(bool $initialize = false): PHPCRExecutor
125125
{
126126
static $lastInitialize = null;
127127

0 commit comments

Comments
 (0)