You are here

public function TableCell::getColspan in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Helper/TableCell.php \Symfony\Component\Console\Helper\TableCell::getColspan()

Gets number of colspan.

Return value

int

File

vendor/symfony/console/Helper/TableCell.php, line 63

Class

TableCell
@author Abdellatif Ait boudad <a.aitboudad@gmail.com>

Namespace

Symfony\Component\Console\Helper

Code

public function getColspan() {
  return (int) $this->options['colspan'];
}