diff --git a/components/serializer.rst b/components/serializer.rst index 580f55aa613..6eac8eebd51 100644 --- a/components/serializer.rst +++ b/components/serializer.rst @@ -984,6 +984,8 @@ Option Description D ``csv_delimiter`` Sets the field delimiter separating values (one ``,`` character only) ``csv_enclosure`` Sets the field enclosure (one character only) ``"`` +``csv_end_of_line`` Sets the character(s) used to mark the end of each ``\n`` + line in the CSV file ``csv_escape_char`` Sets the escape character (at most one character) empty string ``csv_key_separator`` Sets the separator for array's keys during its ``.`` flattening @@ -1000,6 +1002,10 @@ Option Description D ``output_utf8_bom`` Outputs special `UTF-8 BOM`_ along with encoded data ``false`` ======================= ===================================================== ========================== +.. versionadded:: 5.3 + + The ``csv_end_of_line`` option was introduced in Symfony 5.3. + The ``XmlEncoder`` ~~~~~~~~~~~~~~~~~~