DigiComp.FluidCurrentContro.../Tests/Functional/Fixtures/Controller/TestController.php

23 lines
370 B
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
namespace DigiComp\FluidCurrentControllerExpression\Tests\Functional\Fixtures\Controller;
use Neos\Flow\Mvc\Controller\ActionController;
class TestController extends ActionController
{
public function indexAction()
{
}
public function withLayoutAction()
{
}
public function inArraysAction()
{
}
}