Skip to content

Commit

Permalink
Merge pull request #62 from EkkoSense/master
Browse files Browse the repository at this point in the history
Allow URL-rewriting without saving the minified content to the file system
  • Loading branch information
matthiasmullie committed Aug 20, 2015
2 parents c7dcdc4 + d7bb032 commit 2cee254
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CSS.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ protected function importFiles($source, $content)
* @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 = '';

Expand Down
2 changes: 1 addition & 1 deletion src/Minify.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public function cache(CacheItemInterface $item)
* @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.
Expand Down

0 comments on commit 2cee254

Please sign in to comment.