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

setCellAlignment() public method

Sets the cell alignment.
public setCellAlignment ( integer $alignment ) : static
$alignment integer One of the {@link Alignment} constants.
return static The current instance.
    public function setCellAlignment($alignment)
    {
        Assert::oneOf($alignment, Alignment::all(), 'The cell alignment must be one of the Alignment constants. Got: %s');
        $this->cellAlignment = $alignment;
        return $this;
    }