From 01edb7db7099aba13a8ebd58e88f1b27100493cf Mon Sep 17 00:00:00 2001 From: Simon Bouland Date: Tue, 7 Jan 2020 18:56:59 +0100 Subject: [PATCH] Fix according CS rules --- src/Spout/Writer/WriterAbstract.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Spout/Writer/WriterAbstract.php b/src/Spout/Writer/WriterAbstract.php index ebd6337..fdd64ac 100644 --- a/src/Spout/Writer/WriterAbstract.php +++ b/src/Spout/Writer/WriterAbstract.php @@ -144,11 +144,11 @@ abstract class WriterAbstract implements WriterInterface } /** - * @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Disposition - * @link https://tools.ietf.org/html/rfc5987 - * @link https://tools.ietf.org/html/rfc2231#section-4 + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Disposition + * @see https://tools.ietf.org/html/rfc5987 + * @see https://tools.ietf.org/html/rfc2231#section-4 */ - protected function getContentDispositionHeader(): string + protected function getContentDispositionHeader() : string { return 'Content-Disposition: attachment; filename="' . iconv('UTF-8', 'ASCII//IGNORE', $this->outputFilePath) . '"; filename*=utf-8\'\'' . rawurlencode($this->outputFilePath); }