Spatie\Browsershot\Browsershot::setHeight PHP Method

setHeight() public method

public setHeight ( integer $height )
$height integer
    public function setHeight($height)
    {
        if (!is_numeric($height)) {
            throw new Exception('Height must be numeric');
        }
        $this->height = $height;
        return $this;
    }