Phalcon\Cli\Environment\Environment::setDimensions PHP Метод

setDimensions() публичный Метод

Sets terminal dimensions.
public setDimensions ( integer $width, integer $height )
$width integer The width
$height integer The height
    public function setDimensions($width, $height)
    {
        if ((is_int($width) || ctype_digit($width)) && (is_int($height) || ctype_digit($height))) {
            $this->dimensions = [$width, $height];
        }
        return $this;
    }