Skip to content

Commit

Permalink
[#13819] - Removed minifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Feb 12, 2019
1 parent e99a71a commit e6a623d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phalcon/assets/filters/cssmin.zep
Expand Up @@ -26,6 +26,6 @@ class Cssmin implements FilterInterface
*/
public function filter(string! content) -> string
{
return phalcon_cssmin(content);
return content;
}
}
2 changes: 1 addition & 1 deletion phalcon/assets/filters/jsmin.zep
Expand Up @@ -26,6 +26,6 @@ class Jsmin implements FilterInterface
*/
public function filter(string! content) -> string
{
return phalcon_jsmin(content);
return content;
}
}

0 comments on commit e6a623d

Please sign in to comment.