1 | <?php |
||
8 | class Input implements InputInterface |
||
9 | { |
||
10 | /** |
||
11 | * Flatten all input from the request. |
||
12 | * |
||
13 | * @param ServerRequestInterface $request |
||
14 | * |
||
15 | * @return array |
||
16 | */ |
||
17 | 10 | public function __invoke( |
|
35 | |||
36 | /** |
||
37 | * @param ServerRequestInterface $request |
||
38 | * |
||
39 | * @return array |
||
40 | */ |
||
41 | 10 | private function body(ServerRequestInterface $request) |
|
58 | } |
||
59 |