Skip to content

Commit b868d39

Browse files
committed
Fixed stubs
1 parent 71021ab commit b868d39

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

stubs/DocumentRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function findAll();
2828
* @phpstan-param mixed[] $criteria
2929
* @phpstan-param string[]|null $sort
3030
* @phpstan-param int|null $limit
31-
* @phpstan-param int|null $sip
31+
* @phpstan-param int|null $skip
3232
* @phpstan-return TDocumentClass[]
3333
*/
3434
public function findBy(array $criteria, ?array $sort = null, $limit = null, $skip = null);

stubs/EntityManagerDecorator.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace Doctrine\ORM\Decorator;
44

5+
use Doctrine\ORM\EntityManagerInterface;
6+
use Doctrine\ORM\EntityRepository;
7+
58
class EntityManagerDecorator implements EntityManagerInterface
69
{
710

0 commit comments

Comments
 (0)