1 | <?php |
||
12 | final class GetUserByEmailQueryObject extends AbstractQueryObject |
||
13 | { |
||
14 | /** @var string */ |
||
15 | private $email; |
||
16 | |||
17 | /** @var \SixtyEightPublishers\User\Common\UserMapping */ |
||
18 | private $mapping; |
||
19 | |||
20 | /** |
||
21 | * @param string $email |
||
22 | * @param \SixtyEightPublishers\User\Common\UserMapping $mapping |
||
23 | */ |
||
24 | public function __construct(string $email, UserMapping $mapping) |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function createQuery(QueryFactoryInterface $queryFactory) |
||
41 | } |
||
42 |