9 lines
121 B
PHP
9 lines
121 B
PHP
|
<?php
|
||
|
|
||
|
namespace Cron;
|
||
|
|
||
|
interface FieldFactoryInterface
|
||
|
{
|
||
|
public function getField(int $position): FieldInterface;
|
||
|
}
|