PHP Class Neos\FluidAdaptor\Core\ViewHelper\ArgumentDefinition

Deprecation: use \TYPO3Fluid\Fluid\Core\ViewHelper\ArgumentDefinition
Inheritance: extends TYPO3Fluid\Fluid\Core\ViewHelper\ArgumentDefinition
Show file Open project: neos/flow-development-collection

Protected Properties

Property Type Description
$isMethodParameter boolean TRUE if it is a method parameter

Public Methods

Method Description
__construct ( string $name, string $type, string $description, boolean $required, mixed $defaultValue = null, boolean $isMethodParameter = false ) Constructor for this argument definition.
isMethodParameter ( ) : boolean TRUE if it is a method parameter

Method Details

__construct() public method

Constructor for this argument definition.
public __construct ( string $name, string $type, string $description, boolean $required, mixed $defaultValue = null, boolean $isMethodParameter = false )
$name string Name of argument
$type string Type of argument
$description string Description of argument
$required boolean TRUE if argument is required
$defaultValue mixed Default value
$isMethodParameter boolean TRUE if this argument is a method parameter

isMethodParameter() public method

TRUE if it is a method parameter
public isMethodParameter ( ) : boolean
return boolean TRUE if it's a method parameter

Property Details

$isMethodParameter protected property

TRUE if it is a method parameter
protected bool $isMethodParameter
return boolean