@@ -213,9 +213,6 @@ which outputs:
213
213
│ 80-902734-1-6 │ And Then There Were None │ Agatha Christie │
214
214
└───────────────┴──────────────────────────┴──────────────────┘
215
215
216
- .. versionadded :: 4.1
217
- The ``box `` style was introduced in Symfony 4.1.
218
-
219
216
You can also set the style to ``box-double ``::
220
217
221
218
$table->setStyle('box-double');
@@ -234,9 +231,6 @@ which outputs:
234
231
║ 80-902734-1-6 │ And Then There Were None │ Agatha Christie ║
235
232
╚═══════════════╧══════════════════════════╧══════════════════╝
236
233
237
- .. versionadded :: 4.1
238
- The ``box-double `` style was introduced in Symfony 4.1.
239
-
240
234
If the built-in styles do not fit your need, define your own::
241
235
242
236
use Symfony\Component\Console\Helper\TableStyle;
@@ -266,17 +260,6 @@ Here is a full list of things you can customize:
266
260
* :method: `Symfony\\ Component\\ Console\\ Helper\\ TableStyle::setBorderFormat `
267
261
* :method: `Symfony\\ Component\\ Console\\ Helper\\ TableStyle::setPadType `
268
262
269
- .. versionadded :: 4.1
270
- The ``setDefaultCrossingChars `` method was introduced in Symfony 4.1.
271
- It replaces the deprecated ``setHorizontalBorderChar `` method.
272
-
273
- Also, the ``setVerticalBorderChars `` method was introduced. Use this instead
274
- of the deprecated ``setVerticalBorderChar `` method.
275
-
276
- The ``setCrossingChars() `` and ``setDefaultCrossingChar() `` methods are also
277
- new. Previously you could only use the now deprecated ``setCrossingChar() ``
278
- method.
279
-
280
263
.. tip ::
281
264
282
265
You can also register a style globally::
@@ -382,9 +365,6 @@ you to create any table layout you may wish.
382
365
Modifying Rendered Tables
383
366
-------------------------
384
367
385
- .. versionadded :: 4.1
386
- The feature to modify rendered tables was introduced in Symfony 4.1.
387
-
388
368
The ``render() `` method requires passing the entire table contents. However,
389
369
sometimes that information is not available beforehand because it's generated
390
370
dynamically. In those cases, use the
0 commit comments