silverstripe-framework/src/View/Requirements_Minifier.php

23 lines
464 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\View;
/**
* Provides an abstract interface for minifying content
2017-05-11 01:52:31 +02:00
*
* @deprecated 4.0.0:5.0.0
*/
interface Requirements_Minifier
{
2016-11-29 00:31:16 +01:00
/**
* Minify the given content
*
* @param string $content
* @param string $type Either js or css
* @param string $filename Name of file to display in case of error
* @return string minified content
*/
public function minify($content, $type, $filename);
}