Skip to content

Commit

Permalink
Comply with class-string requirement
Browse files Browse the repository at this point in the history
This class implements an interface that requires getClassName() to
return a class-string.
  • Loading branch information
greg0ire committed Feb 12, 2022
1 parent f1f034b commit eec8f55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Repository/ContainerRepositoryFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public function findOneBy(array $criteria)

public function getClassName(): string
{
return '';
return stdClass::class;
}
}

Expand Down

0 comments on commit eec8f55

Please sign in to comment.