mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-06 16:26:44 +02:00
10 lines
183 B
PHP
10 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;
|
|
}
|