DigiComp.FluidJsonViews/Tests/Functional/Fixtures/Controller/TestController.php
Ferdinand Kuhl 3f88707365
Some checks failed
ci/woodpecker/push/functional-tests/2 Pipeline failed
ci/woodpecker/push/functional-tests/3 Pipeline failed
ci/woodpecker/push/functional-tests/1 Pipeline failed
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/4 Pipeline failed
first working version in Flow 6.3
2024-06-02 02:30:24 +02:00

17 lines
436 B
PHP

<?php
declare(strict_types=1);
namespace DigiComp\FluidJsonViews\Tests\Functional\Fixtures\Controller;
use Neos\Flow\Mvc\Controller\ActionController;
use Neos\Flow\Persistence\Doctrine\Query;
use Neos\FluidAdaptor\Tests\Functional\Form\Fixtures\Domain\Model\Tag;
class TestController extends ActionController
{
public function indexAction()
{
$this->view->assign('tags', (new Query(Tag::class))->execute());
}
}