Skip to content

Commit 5b8da6b

Browse files
committed
Merge branch '4.4' into 5.1
* 4.4: fix table markup
2 parents 3466be4 + d585762 commit 5b8da6b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

components/serializer.rst

+11-11
Original file line numberDiff line numberDiff line change
@@ -807,27 +807,27 @@ which defines the configuration options for the CsvEncoder an associative array:
807807

808808
These are the options available:
809809

810-
======================= ==================================================== ==========================
811-
Option Description Default
812-
======================= ==================================================== ==========================
813-
``csv_delimiter`` Sets the field delimiter separating values (one ``,``
810+
======================= ===================================================== ==========================
811+
Option Description Default
812+
======================= ===================================================== ==========================
813+
``csv_delimiter`` Sets the field delimiter separating values (one ``,``
814814
character only)
815-
``csv_enclosure`` Sets the field enclosure (one character only) ``"``
815+
``csv_enclosure`` Sets the field enclosure (one character only) ``"``
816816
``csv_escape_char`` Sets the escape character (at most one character)
817-
``csv_key_separator`` Sets the separator for array's keys during its ``.``
817+
``csv_key_separator`` Sets the separator for array's keys during its ``.``
818818
flattening
819819
``csv_headers`` Sets the order of the header and data columns
820820
E.g.: if ``$data = ['c' => 3, 'a' => 1, 'b' => 2]``
821821
and ``$options = ['csv_headers' => ['a', 'b', 'c']]``
822822
then ``serialize($data, 'csv', $options)`` returns
823-
``a,b,c\n1,2,3 `` ``[]``, inferred from input data's keys
824-
``csv_escape_formulas`` Escapes fields containg formulas by prepending them ``false``
823+
``a,b,c\n1,2,3`` ``[]``, inferred from input data's keys
824+
``csv_escape_formulas`` Escapes fields containg formulas by prepending them ``false``
825825
with a ``\t`` character
826826
``as_collection`` Always returns results as a collection, even if only
827827
one line is decoded.
828-
``no_headers`` Disables header in the encoded CSV ``false``
829-
``output_utf8_bom`` Outputs special `UTF-8 BOM`_ along with encoded data ``false``
830-
======================= ==================================================== ==========================
828+
``no_headers`` Disables header in the encoded CSV ``false``
829+
``output_utf8_bom`` Outputs special `UTF-8 BOM`_ along with encoded data ``false``
830+
======================= ===================================================== ==========================
831831

832832
The ``XmlEncoder``
833833
~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)