mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
21 lines
491 B
PHP
21 lines
491 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
|
|
|
use Pterodactyl\Models\Task;
|
|
|
|
interface TaskRepositoryInterface extends RepositoryInterface
|
|
{
|
|
/**
|
|
* Get a task and the server relationship for that task.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function getTaskForJobProcess(int $id): Task;
|
|
|
|
/**
|
|
* Returns the next task in a schedule.
|
|
*/
|
|
public function getNextTask(int $schedule, int $index): ?Task;
|
|
}
|