From 28167bcbf85428a222bbfd03aa0e5dca632a0a60 Mon Sep 17 00:00:00 2001 From: MikeLenoir Date: Tue, 1 Oct 2019 08:53:34 -0500 Subject: [PATCH] Changed setFileName() from protected to public --- src/Fetch/Attachment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fetch/Attachment.php b/src/Fetch/Attachment.php index e77984a..f9e2e6a 100644 --- a/src/Fetch/Attachment.php +++ b/src/Fetch/Attachment.php @@ -232,7 +232,7 @@ public function saveAs($path) return $result; } - protected function setFileName($text) + public function setFileName($text) { $this->filename = MIME::decode($text, Message::$charset); }