__construct() public method

Constructor for method invocation
public __construct ( string $className, string $methodName, array $advices )
$className string Class name
$methodName string Method to invoke
$advices array array List of advices for this invocation
 /**
  * {@inheritdoc}
  */
 public function __construct($className, $methodName, array $advices)
 {
     parent::__construct($className, $methodName, $advices);
     $this->closureToCall = $this->getStaticInvoker($this->className, $methodName);
 }