MockAction::filter_append PHP Method

filter_append() public method

public filter_append ( $arg )
    function filter_append($arg)
    {
        if ($this->debug) {
            dmp(__FUNCTION__, $this->current_filter());
        }
        $args = func_get_args();
        $this->events[] = array('filter' => __FUNCTION__, 'tag' => $this->current_filter(), 'args' => $args);
        return $arg . '_append';
    }