We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, The last version CssMinFilter with wikimedia, the class is: `<?php
namespace Assetic\Filter;
use Assetic\Contracts\Asset\AssetInterface; use Wikimedia\Minify\CSSMin;
/**
And the example in readme use "CssMinFilter" but is "CSSMinFilter".
The text was updated successfully, but these errors were encountered:
@fred460 can you submit a PR with your proposed change? I don't really understand what you're saying here.
Sorry, something went wrong.
No branches or pull requests
Hello,
The last version CssMinFilter with wikimedia, the class is:
`<?php
namespace Assetic\Filter;
use Assetic\Contracts\Asset\AssetInterface;
use Wikimedia\Minify\CSSMin;
/**
*/
class CSSMinFilter extends BaseFilter
{
public function filterDump(AssetInterface $asset)
{
$asset->setContent(CSSMin::minify($asset->getContent()));
}
}`
And the example in readme use "CssMinFilter" but is "CSSMinFilter".
The text was updated successfully, but these errors were encountered: