19 declare(strict_types=1);
37 $this->parsed_body = $request->getParsedBody();
43 public function get(
string $name)
45 if (!isset($this->parsed_body[$name])) {
46 throw new LogicException(
"'$name' is not contained in posted data.");
49 return $this->parsed_body[$name];
56 public function getOr(
string $name, $default)
58 if (!isset($this->parsed_body[$name])) {
62 return $this->parsed_body[$name];
65 public function has($name): bool
67 return array_key_exists($name, $this->parsed_body);
__construct(ServerRequestInterface $request)
Implements interaction of input element with post data from psr-7 server request. ...
getOr(string $name, $default)