Ferdinand Kuhl
0de901d45c
Some checks failed
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline failed
ci/woodpecker/push/functional-tests/2 Pipeline failed
ci/woodpecker/push/functional-tests/3 Pipeline failed
ci/woodpecker/push/functional-tests/4 Pipeline failed
10 lines
166 B
PHP
10 lines
166 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DigiComp\FluidRenderFunctions;
|
|
|
|
interface InvokeRenderFunctionInterface
|
|
{
|
|
public function __invoke($object): string;
|
|
}
|