Webmozart\Console\UI\Style\GridStyle::setPaddingChar PHP Method

setPaddingChar() public method

Sets the character used to pad cells to the desired width.
public setPaddingChar ( string $char ) : static
$char string The padding character.
return static The current instance.
    public function setPaddingChar($char)
    {
        $this->paddingChar = $char;
        return $this;
    }