mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-20 02:08:10 +00:00
9 lines
121 B
PHP
9 lines
121 B
PHP
<?php
|
|
|
|
namespace Cron;
|
|
|
|
interface FieldFactoryInterface
|
|
{
|
|
public function getField(int $position): FieldInterface;
|
|
}
|