DigiComp.FluidCurrentContro.../Tests/Functional/Fixtures/Controller/TestController.php
Ferdinand Kuhl f75b21a874
Some checks failed
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline failed
ci/woodpecker/push/functional-tests/2 Pipeline failed
ci/woodpecker/push/functional-tests/3 Pipeline failed
ci/woodpecker/push/functional-tests/4 Pipeline failed
changing the format of the expression detections to avoid accidently being identified as objectaccessor and adding a test, where that happend with the previous expression
2024-05-30 15:08:53 +02:00

22 lines
370 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()
{
}
public function inArraysAction()
{
}
}