Skip to content

Commit 2ae9c65

Browse files
committed
minor #10469 [VarDumper] Add missing use statements (ogizanagi)
This PR was merged into the 4.1 branch. Discussion ---------- [VarDumper] Add missing use statements Oopsy. I've forgotten some use statements. Commits ------- f19bc80 [VarDumper] Add missing use statements
2 parents 1019797 + f19bc80 commit 2ae9c65

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

components/var_dumper.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ Outside a Symfony application, use the :class:`Symfony\\Component\\VarDumper\\Du
156156

157157
use Symfony\Component\VarDumper\VarDumper;
158158
use Symfony\Component\VarDumper\Cloner\VarCloner;
159+
use Symfony\Component\VarDumper\Dumper\CliDumper;
160+
use Symfony\Component\VarDumper\Dumper\ContextProvider\CliContextProvider;
161+
use Symfony\Component\VarDumper\Dumper\ContextProvider\SourceContextProvider;
162+
use Symfony\Component\VarDumper\Dumper\HtmlDumper;
159163
use Symfony\Component\VarDumper\Dumper\ServerDumper;
160164

161165
$cloner = new VarCloner();
@@ -176,7 +180,7 @@ Outside a Symfony application, use the :class:`Symfony\\Component\\VarDumper\\Du
176180
is a :class:`Symfony\\Component\\VarDumper\\Dumper\\DataDumperInterface` instance
177181
used as a fallback when the server is unreachable. The third argument are the
178182
context providers, which allow to gather some info about the context in which the
179-
data was dumped. The built-in contexts providers are: ``cli``, ``request`` and ``source``.
183+
data was dumped. The built-in context providers are: ``cli``, ``request`` and ``source``.
180184

181185
Then you can use the following command to start a server out-of-the-box:
182186

0 commit comments

Comments
 (0)