Lines Matching refs:request
137 * @param ServerRequestInterface $request
141 public function handle(ServerRequestInterface $request): ResponseInterface argument
143 $tree = Validator::attributes($request)->tree();
144 $user = Validator::attributes($request)->user();
145 $xref = Validator::attributes($request)->isXref()->string('xref');
146 …$book_size = Validator::attributes($request)->isBetween(self::MINIMUM_BOOK_SIZE, self::MAXIMUM_B…
147 …$generations = Validator::attributes($request)->isBetween(self::MINIMUM_GENERATIONS, self::MAXIMUM…
148 $spouses = Validator::attributes($request)->boolean('spouses', false);
149 $ajax = Validator::queryParams($request)->boolean('ajax', false);
152 if ($request->getMethod() === RequestMethodInterface::METHOD_POST) {
155 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
156 …'book_size' => Validator::parsedBody($request)->isBetween(self::MINIMUM_BOOK_SIZE, self::MAXIMUM…
157 …'generations' => Validator::parsedBody($request)->isBetween(self::MINIMUM_GENERATIONS, self::MAXIM…
158 'spouses' => Validator::parsedBody($request)->boolean('spouses', false),