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

13 lines
252 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';
2024-07-07 20:45:18 +08:00
abstract public function fetch(bool $force = false, ?array $config = null, int $lock_as = SPC_LOCK_SOURCE): void;
2023-04-09 12:11:14 +08:00
}