@@ -764,7 +764,7 @@ There are several types of normalizers available:
764764
765765:class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ ProblemNormalizer `
766766 Normalizes errors according to the API Problem spec `RFC 7807 `_.
767-
767+
768768.. _component-serializer-encoders :
769769
770770Encoders
@@ -1270,35 +1270,35 @@ These are the options available:
12701270
12711271``csv_delimiter ``
12721272 Sets the field delimiter separating values (one character only, default: ``, ``).
1273-
1273+
12741274``csv_enclosure ``
12751275 Sets the field enclosure (one character only, default: ``" ``).
1276-
1276+
12771277``csv_escape_char ``
12781278 Sets the escape character (at most one character, default: empty string).
1279-
1279+
12801280``csv_key_separator ``
12811281 Sets the separator for array's keys during its flattening (default: ``. ``).
1282-
1282+
12831283``csv_headers ``
12841284 Sets the headers for the data (default: ``[] ``, inferred from input data's keys).
1285-
1285+
12861286``csv_escape_formulas ``
12871287 Escapes fields containg formulas by prepending them with a ``\t `` character (default: ``false ``).
1288-
1288+
12891289``as_collection ``
1290- Always returns results as a collection, even if only one line is decoded (default: ``false ``).
1291-
1292- ..deprecated ::4.2
1290+ Always returns results as a collection, even if only one line is decoded.
12931291
1294- Relying on the default value ``false `` is deprecated since Symfony 4.2.
1295-
12961292``no_headers ``
12971293 Disables header in the encoded CSV (default: ``false ``).
1298-
1294+
12991295``output_utf8_bom ``
13001296 Outputs special `UTF-8 BOM `_ along with encoded data (default: ``false ``).
13011297
1298+ ..versionadded ::4.4
1299+
1300+ The ``output_utf8_bom `` option was introduced in Symfony 4.4.
1301+
13021302Handling Constructor Arguments
13031303------------------------------
13041304