From ed9a79d71d079b09285a770453e9f45cebeb156d Mon Sep 17 00:00:00 2001 From: Seb Date: Thu, 26 Jan 2017 22:29:06 +0000 Subject: [PATCH] Allow any implementation of ViewFactory --- src/Illuminate/Mail/Markdown.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Mail/Markdown.php b/src/Illuminate/Mail/Markdown.php index e1fca2195d7b..4de1df63e6b0 100644 --- a/src/Illuminate/Mail/Markdown.php +++ b/src/Illuminate/Mail/Markdown.php @@ -5,7 +5,7 @@ use Parsedown; use Illuminate\Support\Arr; use Illuminate\Support\HtmlString; -use Illuminate\View\Factory as ViewFactory; +use Illuminate\Contracts\View\Factory as ViewFactory; use TijsVerkoyen\CssToInlineStyles\CssToInlineStyles; class Markdown