PHP Class Neos\Flow\Tests\Functional\Mvc\Fixtures\Controller\AbstractControllerTestAController

Although the functions we want to test are really implemented in the Abstract Controller, this fixture class is an ActionController as this is the easiest way to provide an implementation of the abstract class.
Inheritance: extends Neos\Flow\Mvc\Controller\ActionController
Show file Open project: neos/flow-development-collection

Public Methods

Method Description
forwardAction ( string $actionName, string $controllerName = null, string $packageKey = null, array $arguments = [], boolean $passSomeObjectArguments = false ) : void An action which forwards using the given parameters
fourthAction ( string $nonObject1 = null, integer $nonObject2 = null ) : string
secondAction ( ) : string
thirdAction ( string $firstArgument, string $secondArgument, string $third = null, string $fourth = 'default' ) : string

Method Details

forwardAction() public method

An action which forwards using the given parameters
public forwardAction ( string $actionName, string $controllerName = null, string $packageKey = null, array $arguments = [], boolean $passSomeObjectArguments = false ) : void
$actionName string
$controllerName string
$packageKey string
$arguments array
$passSomeObjectArguments boolean
return void

fourthAction() public method

public fourthAction ( string $nonObject1 = null, integer $nonObject2 = null ) : string
$nonObject1 string
$nonObject2 integer
return string

secondAction() public method

public secondAction ( ) : string
return string

thirdAction() public method

public thirdAction ( string $firstArgument, string $secondArgument, string $third = null, string $fourth = 'default' ) : string
$firstArgument string
$secondArgument string
$third string
$fourth string
return string