| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function process(ServerRequestInterface $request,RequestHandlerInterface $handler): ResponseInterface |
||
| 13 | {
|
||
| 14 | // Return a text message in the container or a generic greeting... |
||
| 15 | $message = $this->has('message')?$this->get('message'):'Hi';
|
||
| 16 | |||
| 17 | return new \Zend\Diactoros\Response\TextResponse( $message); |
||
| 18 | } |
||
| 19 | } |