mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-22 04:30:32 +09:00
9 lines
121 B
PHP
9 lines
121 B
PHP
<?php
|
|
|
|
namespace Cron;
|
|
|
|
interface FieldFactoryInterface
|
|
{
|
|
public function getField(int $position): FieldInterface;
|
|
}
|