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