Spatie\Backup\Tasks\Backup\Zip::size PHP Method

size() public method

public size ( ) : integer
return integer
    public function size() : int
    {
        if ($this->fileCount === 0) {
            return 0;
        }
        return filesize($this->pathToZip);
    }