Assetic LessPhpFilter で特定の拡張子 ( .less) を持つファイルのみを処理し、その他 ( .css) を無視するにはどうすればよいですか。以下のコードを使用して、結合されたcssファイルを生成しています
$fm = new Assetic\FilterManager();
$fm->set('less', new Assetic\Filter\LessphpFilter());
$factory = new Assetic\Factory\AssetFactory(APP_ROOT.'stylesheets');
$factory->setFilterManager($fm);
$asset = $factory->createAsset($stylesheets, array('less'), array('debug' => false));