PHP Класс Neos\Flow\ObjectManagement\Proxy\ProxyConstructor

Наследование: extends ProxyMethod
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$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