You are here

public function TableHelper::setPadType in Zircon Profile 8.0

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

Sets cell padding type.

Parameters

int $padType STR_PAD_*:

Return value

TableHelper

File

vendor/symfony/console/Helper/TableHelper.php, line 231

Class

TableHelper
Provides helpers to display table output.

Namespace

Symfony\Component\Console\Helper

Code

public function setPadType($padType) {
  $this->table
    ->getStyle()
    ->setPadType($padType);
  return $this;
}