TableSeparator.php 610 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Console\Helper;
  11. /**
  12. * Marks a row as being a separator.
  13. *
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. */
  16. class TableSeparator extends TableCell
  17. {
  18. /**
  19. * @param string $value
  20. * @param array $options
  21. */
  22. public function __construct(array $options = array())
  23. {
  24. parent::__construct('', $options);
  25. }
  26. }