PHP Class Neos\Flow\ObjectManagement\Proxy\ProxyConstructor

Inheritance: extends ProxyMethod
ファイルを表示 Open project: neos/flow-development-collection Class Usage Examples

Protected Properties

Property Type Description
$methodName string Name of the original method

Public Methods

Method Description
__construct ( string $fullOriginalClassName )
render ( ) : string Renders the code for a proxy constructor

Protected Methods

Method Description
buildCallParentMethodCode ( string $fullClassName, string $methodName ) : string Builds PHP code which calls the original (ie. parent) method after the added code has been executed.

Method Details

__construct() public method

public __construct ( string $fullOriginalClassName )
$fullOriginalClassName string The fully qualified class name of the original class

buildCallParentMethodCode() protected method

Builds PHP code which calls the original (ie. parent) method after the added code has been executed.
protected buildCallParentMethodCode ( string $fullClassName, string $methodName ) : string
$fullClassName string Fully qualified name of the original class
$methodName string Name of the original method
return string PHP code

render() public method

Renders the code for a proxy constructor
public render ( ) : string
return string PHP code

Property Details

$methodName protected_oe property

Name of the original method
protected string $methodName
return string