Skip to content

Commit

Permalink
Lower version for stubs capabilities in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierstoval committed Jun 10, 2024
1 parent bb5484f commit 60d653b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Stubs/EntityManagerStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
use Doctrine\ORM\QueryBuilder;
use Doctrine\ORM\UnitOfWork;

if (PHP_VERSION_ID < 80300) {
if (PHP_VERSION_ID < 80100) {
class EntityManagerStub extends ObjectManagerStub implements EntityManagerInterface
{
/** @var Driver */
Expand Down
2 changes: 1 addition & 1 deletion tests/Stubs/ObjectManagerStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use Doctrine\ORM\Mapping\ClassMetadata;
use Doctrine\Persistence\ObjectManager;

if (PHP_VERSION_ID < 80300) {
if (PHP_VERSION_ID < 80100) {
class ObjectManagerStub implements ObjectManager
{
/** @var ClassMetadata */
Expand Down

0 comments on commit 60d653b

Please sign in to comment.