mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
11 lines
267 B
PHP
11 lines
267 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
namespace JKingWeb\Arsse\Service;
|
||
|
|
||
|
interface Driver {
|
||
|
static function driverName(): string;
|
||
|
static function requirementsMet(): bool;
|
||
|
function queue(int ...$feeds): int;
|
||
|
function exec(): int;
|
||
|
function clean(): bool;
|
||
|
}
|