Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function createQuery(QueryFactoryInterface $queryFactory) |
||
34 | { |
||
35 | return $queryFactory->createQueryBuilder() |
||
36 | ->select('u') |
||
37 | ->from(UserInterface::class, 'u') |
||
38 | ->where('u.' . $this->mapping[UserMapping::FILED_EMAIL] . ' = :email') |
||
39 | ->setParameter('email', $this->email); |
||
40 | } |
||
41 | } |
||
42 |