MatthiasMullie\Minify\Minify::__construct PHP Method

__construct() public method

Init the minify class - optionally, code may be passed along already.
public __construct ( )
    public function __construct()
    {
        // it's possible to add the source through the constructor as well ;)
        if (func_num_args()) {
            call_user_func_array(array($this, 'add'), func_get_args());
        }
    }