only this remains?
protected function render(string $view, array $parameters = []): ResponseInterface
{
$content = $this->webView->render(
'//main',
array_merge(
[
'content' => $this->webView->render($view, $parameters, $this)
],
$parameters
),
$this
);
return $this->responseFactory->createResponse($content);
}