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