Skip to content

Commit 253cf72

Browse files
committed
[Serializer] Fix CS
1 parent 69184cd commit 253cf72

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

components/serializer.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@ Assume you have the following object plain-old-PHP object::
160160
}
161161

162162
The definition of serialization can be specified using annotations, XML
163-
or YAML. The :class:`Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactory`
163+
or YAML. The :class:`Symfony\\Component\\Serializer\\Mapping\\Factory\\ClassMetadataFactory`
164164
that will be used by the normalizer must be aware of the format to use.
165165

166-
Initialize the :class:`Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactory`
166+
Initialize the :class:`Symfony\\Component\\Serializer\\Mapping\\Factory\\ClassMetadataFactory`
167167
like the following::
168168

169169
use Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactory;
@@ -197,6 +197,7 @@ Then, create your groups definition:
197197
* @Groups({"group1", "group2"})
198198
*/
199199
public $foo;
200+
200201
/**
201202
* @Groups({"group3"})
202203
*/

0 commit comments

Comments
 (0)