Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

T13819 remove minifiers #13820

Merged
merged 11 commits into from
Feb 12, 2019
Prev Previous commit
Next Next commit
[#13819] - Removed minifiers
  • Loading branch information
niden committed Feb 11, 2019
commit 13a603c0af0f880c34a8ad62061610e90f019a9d
2 changes: 1 addition & 1 deletion phalcon/assets/filters/cssmin.zep
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ class Jsmin implements FilterInterface
*/
public function filter(string! content) -> string
{
return phalcon_jsmin(content);
return content;
}
}