Have Some question about the Assets Manager of Phalcon
My Code is Like this.
namespace ....
use Phalcon\Assets.....
class......
$this->assets->collection('someCss');
->addCss('css/some.min.css')
->assCss('css/some2.min.css')
->join(1)
->setTargetPath('path/to/public')
->setTargetUri('static/some.min.css');
But this code won't work If i use the Filter it's will combine the Css or Js but not link them to page.
->addFilter(new Phal....CssMin())
there will be some css or js files under the public folder,but in the page these static files are not included.
How am i suppose to correct it?