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

19 lines
320 B
PHP
Raw 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()
{
}
}