これを使用してpdfドキュメントを出力しています:
$response = new \Symfony\Component\HttpFoundation\Response(file_get_contents($thefile), 200, [
'Content-Description' => 'File transfer',
'Content-Disposition' => 'filename="' . $filename . '"',
'Content-Transfer-Encoding' => 'binary',
'Content-Type' => 'application/pdf',
]);
unlink($thefile);
$response->send();
生成されたページでは、ヘッダー タイトルはページへのリンクです。
タイトルをカスタマイズするにはどうすればよいですか?