DigiComp.FluidRenderFunctions/Classes/InvokeRenderFunctionInterface.php

11 lines
166 B
PHP
Raw Permalink Normal View History

2024-06-01 23:15:35 +02:00
<?php
declare(strict_types=1);
namespace DigiComp\FluidRenderFunctions;
interface InvokeRenderFunctionInterface
{
public function __invoke($object): string;
}