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