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