Prado\Util\TCallChain::__dycall PHP Method

__dycall() public method

If the original method call has these parameters $originalobject->dyExampleMethod('param1', 'param2', 'param3') and within the chained dynamic events, this can be called class DyBehavior extends TBehavior { public function dyExampleMethod($param1, $param2, $param3, $callchain) $callchain->dyExampleMethod($param1, $param2, $param3) } { to call the next event in the chain.
public __dycall ( $method, $args )
    public function __dycall($method, $args)
    {
        if ($this->_method == $method) {
            return call_user_func_array(array($this, 'call'), $args);
        }
        return null;
    }