8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 332e6c4 commit 769571aCopy full SHA for 769571a
components/console/helpers/table.rst
@@ -353,18 +353,18 @@ The only requirement to append rows is that the table must be rendered inside a
353
$section = $output->section();
354
$table = new Table($section);
355
356
- $table->addRow(['Row 1']);
+ $table->addRow(['Love']);
357
$table->render();
358
359
- $table->addRow(['Row 2']);
+ $table->appendRow(['Symfony']);
360
}
361
362
363
This will display the following table in the terminal:
364
365
.. code-block:: terminal
366
367
- +-------+
368
- | Row 1 |
369
- | Row 2 |
370
+ +---------+
+ | Love |
+ | Symfony |
0 commit comments