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
30 lines
551 B
PHP
30 lines
551 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DigiComp\FluidRenderFunctions\Utils;
|
|
|
|
use TYPO3Fluid\Fluid\View\ViewInterface;
|
|
|
|
class DummyView implements ViewInterface
|
|
{
|
|
public function assign($key, $value)
|
|
{
|
|
}
|
|
|
|
public function assignMultiple(array $values)
|
|
{
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
}
|
|
|
|
public function renderSection($sectionName, array $variables = [], $ignoreUnknown = false)
|
|
{
|
|
}
|
|
|
|
public function renderPartial($partialName, $sectionName, array $variables, $ignoreUnknown = false)
|
|
{
|
|
}
|
|
}
|