| 1 | <?php |
||
| 11 | final class FindPasswordRequestByIdsQueryObject extends AbstractQueryObject |
||
| 12 | { |
||
| 13 | /** @var mixed */ |
||
| 14 | private $userId; |
||
| 15 | |||
| 16 | /** @var mixed */ |
||
| 17 | private $passwordRequestId; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param mixed $userId |
||
| 21 | * @param mixed $passwordRequestId |
||
| 22 | */ |
||
| 23 | public function __construct($userId, $passwordRequestId) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function createQuery(QueryFactoryInterface $queryFactory) |
||
| 44 | } |
||
| 45 |