Skip to content

Commit

Permalink
add missing strict typing
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Apr 6, 2024
1 parent c1c26ee commit d447691
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Functional/DbManager/PHPCR.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function loadFixtures(array $classes, bool $initialize = false): void
/**
* @param class-string|FixtureInterface $class
*/
public function loadFixtureClass(Loader $loader, $class)
public function loadFixtureClass(Loader $loader, $class): void
{
if (\is_object($class)) {
$fixture = $class;
Expand Down Expand Up @@ -121,7 +121,7 @@ public function createTestNode(): void
$session->save();
}

private function getExecutor($initialize = false): PHPCRExecutor
private function getExecutor(bool $initialize = false): PHPCRExecutor
{
static $lastInitialize = null;

Expand Down

0 comments on commit d447691

Please sign in to comment.