2024-05-30 14:01:25 +02:00
|
|
|
<?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()
|
|
|
|
{
|
|
|
|
}
|
2024-05-30 15:08:53 +02:00
|
|
|
|
|
|
|
public function inArraysAction()
|
|
|
|
{
|
|
|
|
}
|
2024-05-30 14:01:25 +02:00
|
|
|
}
|