getAttribute('name', 'Stranger'); $body = $this->response->getBody(); $time = $this->clock->now()->format('H:i:s'); $body->write('Hello ' . $name . '!
'); $body->write('The Time is: ' . $time); return $this->response->withBody($body) ->withStatus(200); } }