mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
11 lines
183 B
PHP
11 lines
183 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Plugins\Manifest;
|
|
|
|
interface FieldInterface
|
|
{
|
|
public function render(string $name, mixed $value, string $class = ''): string;
|
|
}
|