getBody()->write($html); return $response; } public function texts(Response $response): Response { $html = file_get_contents(__DIR__.'/../../views/templates/texts.php', true); $response->getBody()->write($html); return $response; } public function text(Response $response): Response { $html = file_get_contents(__DIR__.'/../../views/templates/text.php', true); $response->getBody()->write($html); return $response; } }