DebugFormatterHelper.php
1 year ago
DescriptorHelper.php
1 year ago
Dumper.php
1 year ago
FormatterHelper.php
1 year ago
Helper.php
1 year ago
HelperInterface.php
2 years ago
HelperSet.php
2 years ago
InputAwareHelper.php
2 years ago
ProcessHelper.php
2 years ago
ProgressBar.php
1 year ago
ProgressIndicator.php
1 year ago
QuestionHelper.php
1 year ago
SymfonyQuestionHelper.php
1 year ago
Table.php
1 year ago
TableCell.php
2 years ago
TableCellStyle.php
2 years ago
TableRows.php
2 years ago
TableSeparator.php
2 years ago
TableStyle.php
1 year ago
TableSeparator.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | namespace Matomo\Dependencies\Symfony\Component\Console\Helper; |
| 12 | |
| 13 | /** |
| 14 | * Marks a row as being a separator. |
| 15 | * |
| 16 | * @author Fabien Potencier <fabien@symfony.com> |
| 17 | */ |
| 18 | class TableSeparator extends TableCell |
| 19 | { |
| 20 | public function __construct(array $options = []) |
| 21 | { |
| 22 | parent::__construct('', $options); |
| 23 | } |
| 24 | } |
| 25 |