Skip to content

Commit

Permalink
Housekeeping: Fix wrong typehint - Closes doctrine#8421
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Feb 5, 2021
1 parent 424305e commit 8724589
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Doctrine/ORM/LazyCriteriaCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Criteria;
use Doctrine\Common\Collections\Selectable;
use Doctrine\ORM\Persisters\Entity\BasicEntityPersister;
use Doctrine\ORM\Persisters\Entity\EntityPersister;

/**
Expand All @@ -35,7 +34,7 @@
*/
class LazyCriteriaCollection extends AbstractLazyCollection implements Selectable
{
/** @var BasicEntityPersister */
/** @var EntityPersister */
protected $entityPersister;

/** @var Criteria */
Expand Down

0 comments on commit 8724589

Please sign in to comment.