Slide 49
Slide 49 text
public function emitHtml(array $checklist, array $created_articles, array
$activity, array $access, array $related_articles): ResponseInterface
{
$html = $this->html_factory->render($this->views_dir . '/user/mypage', [
'checklist' => $checklist,
//略
]);
return $this->response_factory->createResponse(200)
->withBody($this->stream_factory->createStream($html));
}
新:Mypage/IndexResponder
49