| 1 | <?php |
||
| 11 | class GetUserByEmailQueryFactory implements IGetUserByEmailQueryFactory |
||
| 12 | { |
||
| 13 | use Nette\SmartObject; |
||
| 14 | |||
| 15 | /** @var \SixtyEightPublishers\User\Common\UserMapping */ |
||
| 16 | private $mapping; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param \SixtyEightPublishers\User\Common\UserMapping $mapping |
||
| 20 | */ |
||
| 21 | public function __construct(SixtyEightPublishers\User\Common\UserMapping $mapping) |
||
| 25 | |||
| 26 | /********* interface \SixtyEightPublishers\User\ForgotPassword\Query\IGetUserByEmailQueryFactory *********/ |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function create(Doctrine\ORM\EntityManagerInterface $em, string $email): Doctrine\ORM\Query |
||
| 41 | } |
||
| 42 |