Ferdinand Kuhl
9f3488f84e
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline was successful
ci/woodpecker/push/functional-tests/3 Pipeline was successful
ci/woodpecker/push/functional-tests/2 Pipeline was successful
ci/woodpecker/push/functional-tests/4 Pipeline was successful
31 lines
618 B
PHP
31 lines
618 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DigiComp\FluidRenderFunctions\Utils;
|
|
|
|
use TYPO3Fluid\Fluid\View\ViewInterface;
|
|
|
|
// @deprecated: drop this class, as soon as Flow 6.3 support drops
|
|
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)
|
|
{
|
|
}
|
|
}
|