Skip to content

Commit 3532421

Browse files
committed
Fixed a minor syntax issue in a VarDumper article
1 parent 5152b0e commit 3532421

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

components/var_dumper/advanced.rst

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -375,23 +375,23 @@ thus to dumpers. To help you do this (see the source code for how it works),
375375
the component comes with a set of wrappers for common additional semantics. You
376376
can use:
377377

378-
* :class:`Symfony\\Component\\VarDumper\\Caster\\ConstStub` to wrap a value that is
379-
best represented by a PHP constant;
380-
* :class:`Symfony\\Component\\VarDumper\\Caster\\ClassStub` to wrap a PHP identifier
381-
(*i.e.* a class name, a method name, an interface, *etc.*);
382-
* :class:`Symfony\\Component\\VarDumper\\Caster\\CutStub` to replace big noisy
383-
objects/strings/*etc.* by ellipses;
384-
* :class:`Symfony\\Component\\VarDumper\\Caster\\CutArrayStub` to keep only some
385-
useful keys of an array;
386-
* :class:`Symfony\\Component\\VarDumper\\Caster\\EnumStub` to wrap a set of virtual
387-
values (*i.e.* values that do not exist as properties in the original PHP data
388-
structure, but are worth listing alongside with real ones);
389-
* :class:`Symfony\\Component\\VarDumper\\Caster\\LinkStub` to wrap strings that can
390-
be turned into links by dumpers;
391-
* :class:`Symfony\\Component\\VarDumper\\Caster\\TraceStub` and their
392-
* :class:`Symfony\\Component\\VarDumper\\Caster\\FrameStub` and
393-
* :class:`Symfony\\Component\\VarDumper\\Caster\\ArgsStub` relatives to wrap PHP
394-
traces (used by :class:`Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster`).
378+
* :class:`Symfony\\Component\\VarDumper\\Caster\\ConstStub` to wrap a value that is
379+
best represented by a PHP constant;
380+
* :class:`Symfony\\Component\\VarDumper\\Caster\\ClassStub` to wrap a PHP identifier
381+
(*i.e.* a class name, a method name, an interface, *etc.*);
382+
* :class:`Symfony\\Component\\VarDumper\\Caster\\CutStub` to replace big noisy
383+
objects/strings/*etc.* by ellipses;
384+
* :class:`Symfony\\Component\\VarDumper\\Caster\\CutArrayStub` to keep only some
385+
useful keys of an array;
386+
* :class:`Symfony\\Component\\VarDumper\\Caster\\EnumStub` to wrap a set of virtual
387+
values (*i.e.* values that do not exist as properties in the original PHP data
388+
structure, but are worth listing alongside with real ones);
389+
* :class:`Symfony\\Component\\VarDumper\\Caster\\LinkStub` to wrap strings that can
390+
be turned into links by dumpers;
391+
* :class:`Symfony\\Component\\VarDumper\\Caster\\TraceStub` and their
392+
* :class:`Symfony\\Component\\VarDumper\\Caster\\FrameStub` and
393+
* :class:`Symfony\\Component\\VarDumper\\Caster\\ArgsStub` relatives to wrap PHP
394+
traces (used by :class:`Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster`).
395395

396396
For example, if you know that your ``Product`` objects have a ``brochure`` property
397397
that holds a file name or a URL, you can wrap them in a ``LinkStub`` to tell

0 commit comments

Comments
 (0)