From d24b641e9c8db7c33ad6e4db7042bbd352b92ad1 Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Sun, 5 Aug 2018 21:09:56 +0200 Subject: [PATCH] Fix html dumper in dump server command --- src/DumpServerCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DumpServerCommand.php b/src/DumpServerCommand.php index c319f74..de9edc9 100644 --- a/src/DumpServerCommand.php +++ b/src/DumpServerCommand.php @@ -5,11 +5,11 @@ use Illuminate\Console\Command; use InvalidArgumentException; -use Illuminate\Support\Debug\HtmlDumper; use Symfony\Component\Console\Style\SymfonyStyle; use Symfony\Component\VarDumper\Cloner\Data; use Symfony\Component\VarDumper\Command\Descriptor\HtmlDescriptor; use Symfony\Component\VarDumper\Dumper\CliDumper; +use Symfony\Component\VarDumper\Dumper\HtmlDumper; use Symfony\Component\VarDumper\Server\DumpServer; use Symfony\Component\VarDumper\Command\Descriptor\CliDescriptor;