2023-11-09 14:09:52 +08:00

9 lines
121 B
PHP
Executable File

<?php
namespace Cron;
interface FieldFactoryInterface
{
public function getField(int $position): FieldInterface;
}