on('afterMethod:*', [$this, 'afterMethod']); } /** * Add the request id as a header in the response * * @param RequestInterface $request request * @param ResponseInterface $response response */ public function afterMethod(RequestInterface $request, ResponseInterface $response) { $response->setHeader('X-Request-Id', $this->request->getId()); } }