8000 [VarDumper] Add missing use statements · symfony/symfony-docs@f19bc80 · GitHub
[go: up one dir, main page]

Skip to content

Commit f19bc80

Browse files
committed
[VarDumper] Add missing use statements
1 parent 7014015 commit f19bc80

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)
0