Skip to content

Commit adbec6d

Browse files
committed
Reformat documentation and link to class doc.
1 parent 7b26e44 commit adbec6d

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

components/var_dumper/advanced.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,9 @@ A dumper is responsible for outputting a string representation of a PHP variable
9999
using a :class:`Symfony\\Component\\VarDumper\\Cloner\\Data` object as input.
100100
The destination and the formatting of this output vary with dumpers and are
101101
influenced by two environment variables:
102-
If ``DUMP_STRING_LENGTH`` is set, then
103-
the length of a string is displayed next to its content.
104-
If ``DUMP_LIGHT_ARRAY`` is set,
105-
then arrays are not displayed completely.
102+
103+
- If ``DUMP_STRING_LENGTH`` is set, then the length of a string is displayed next to its content.
104+
- If ``DUMP_LIGHT_ARRAY`` is set, then arrays are not displayed completely.
106105

107106
This component comes with an :class:`Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper`
108107
for HTML output and a :class:`Symfony\\Component\\VarDumper\\Dumper\\CliDumper`
@@ -186,7 +185,7 @@ method. They also typically implement the
186185
them from re-implementing the logic required to walk through a
187186
:class:`Symfony\\Component\\VarDumper\\Cloner\\Data` object's internal structure.
188187

189-
The HTMLDumper limits string length and nesting depth of the output.
188+
The :class:`Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper` limits string length and nesting depth of the output.
190189
These options can be overriden by providing a third parameter when calling ``dump``::
191190

192191
use Symfony\Component\VarDumper\Dumper\HtmlDumper;

0 commit comments

Comments
 (0)