Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\Console\Helper; Chris@0: Chris@0: /** Chris@0: * Marks a row as being a separator. Chris@0: * Chris@0: * @author Fabien Potencier Chris@0: */ Chris@0: class TableSeparator extends TableCell Chris@0: { Chris@17: public function __construct(array $options = []) Chris@0: { Chris@0: parent::__construct('', $options); Chris@0: } Chris@0: }