Neos\Flow\ObjectManagement\Proxy\ProxyMethod::__construct PHP Method

__construct() public method

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;
    }