Access to private methods for testing

Parameters

(string) method: Method to be called:

(array) args: Array of paramters to be passed in:

File

advagg_css_compress/css-compressor-3.x/src/lib/Cleanup.inc, line 205

Class

CSSCompression_Cleanup
CSS Compressor [VERSION] [DATE] Corey Hart @ <a href="http://www.codenothing.com">http://www.codenothing.com</a>

Code

public function access($method, $args) {
    if (method_exists($this, $method)) {
        if ($method == 'cleanup') {
            return $this->cleanup($args[0], $args[1]);
        }
        else {
            return call_user_func_array(array(
                $this,
                $method,
            ), $args);
        }
    }
    else {
        throw new CSSCompression_Exception("Unknown method in Cleanup Class - " . $method);
    }
}