Neos\Flow\Tests\Functional\Mvc\Fixtures\Controller\ActionControllerTestAController::thirdAction PHP Метод

thirdAction() публичный Метод

public thirdAction ( string $firstArgument, string $secondArgument, string $third = null, string $fourth = 'default' ) : string
$firstArgument string
$secondArgument string
$third string
$fourth string
Результат string
    public function thirdAction($firstArgument, $secondArgument, $third = null, $fourth = 'default')
    {
        return 'thirdAction-' . $firstArgument . '-' . $secondArgument . '-' . $third . '-' . $fourth;
    }