enhancement for download command

This commit is contained in:
crazywhalecc
2024-03-10 10:58:58 +08:00
committed by Jerry Ma
parent 71017361b5
commit e23daaa355
5 changed files with 65 additions and 38 deletions

View File

@@ -6,7 +6,6 @@ namespace SPC\store\source;
use SPC\exception\DownloaderException;
use SPC\exception\FileSystemException;
use SPC\exception\RuntimeException;
use SPC\store\Downloader;
class PostgreSQLSource extends CustomSourceBase
@@ -15,12 +14,11 @@ class PostgreSQLSource extends CustomSourceBase
/**
* @throws DownloaderException
* @throws RuntimeException
* @throws FileSystemException
*/
public function fetch(): void
public function fetch(bool $force = false): void
{
Downloader::downloadSource('postgresql', self::getLatestInfo());
Downloader::downloadSource('postgresql', self::getLatestInfo(), $force);
}
/**