Spatie\Browsershot\Browsershot::setWidth PHP Method

setWidth() public method

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