Neos\Flow\ObjectManagement\Proxy\ProxyMethod::__construct PHP Méthode

__construct() public méthode

Constructor
public __construct ( string $fullOriginalClassName, string $methodName )
$fullOriginalClassName string The fully qualified class name of the original class
$methodName string Name of the proxy (and original) method
    public function __construct($fullOriginalClassName, $methodName)
    {
        $this->fullOriginalClassName = $fullOriginalClassName;
        $this->methodName = $methodName;
    }