PHP Class Neos\Flow\Annotations\InjectConfiguration

Flow will build Dependency Injection code for the property and try to inject the configured configuration.
Datei anzeigen Open project: neos/flow-development-collection

Public Properties

Property Type Description
$package string Note: This property is only supported for type "Settings" Example: Neos.Flow
$path string Can be specified as anonymous argument: InjectConfiguration("some.path") For type "Settings" this refers to the relative path (excluding the package key) Example: session.name
$type Type of Configuration (defaults to "Settings").

Public Methods

Method Description
__construct ( array $values )

Method Details

__construct() public method

public __construct ( array $values )
$values array

Property Details

$package public_oe property

Note: This property is only supported for type "Settings" Example: Neos.Flow
public string $package
return string

$path public_oe property

Can be specified as anonymous argument: InjectConfiguration("some.path") For type "Settings" this refers to the relative path (excluding the package key) Example: session.name
public string $path
return string

$type public_oe property

Type of Configuration (defaults to "Settings").
public $type