static-php-cli/src/SPC/store/source/CustomSourceBase.php

13 lines
256 B
PHP
Raw Normal View History

2023-04-09 12:11:14 +08:00
<?php
declare(strict_types=1);
namespace SPC\store\source;
abstract class CustomSourceBase
{
public const NAME = 'unknown';
2025-03-30 23:27:43 +08:00
abstract public function fetch(bool $force = false, ?array $config = null, int $lock_as = SPC_DOWNLOAD_SOURCE): void;
2023-04-09 12:11:14 +08:00
}