PHP 클래스 Neos\Flow\ObjectManagement\Proxy\ProxyConstructor

상속: extends ProxyMethod
파일 보기 프로젝트 열기: neos/flow-development-collection 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$methodName string Name of the original method

공개 메소드들

메소드 설명
__construct ( string $fullOriginalClassName )
render ( ) : string Renders the code for a proxy constructor

보호된 메소드들

메소드 설명
buildCallParentMethodCode ( string $fullClassName, string $methodName ) : string Builds PHP code which calls the original (ie. parent) method after the added code has been executed.

메소드 상세

__construct() 공개 메소드

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

buildCallParentMethodCode() 보호된 메소드

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
리턴 string PHP code

render() 공개 메소드

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

프로퍼티 상세

$methodName 보호되어 있는 프로퍼티

Name of the original method
protected string $methodName
리턴 string