Merge pull request #62 from EkkoSense/master

Allow URL-rewriting without saving the minified content to the file system
This commit is contained in:
Matthias Mullie 2015-08-20 16:49:37 +02:00
commit 2cee254419
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ class CSS extends Minify
* @param string[optional] $path Path to write the data to.
* @return string The minified data.
*/
protected function execute($path = null)
public function execute($path = null)
{
$content = '';

View File

@ -178,7 +178,7 @@ abstract class Minify
* @param string[optional] $path Path to write the data to.
* @return string The minified data.
*/
abstract protected function execute($path = null);
abstract public function execute($path = null);
/**
* Register a pattern to execute against the source content.