mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
f842ee2eec
See: https://github.com/php-fig/fig-standards/blob/master/proposed/phpdoc-tags.md#55-deprecated
23 lines
464 B
PHP
23 lines
464 B
PHP
<?php
|
|
|
|
namespace SilverStripe\View;
|
|
|
|
/**
|
|
* Provides an abstract interface for minifying content
|
|
*
|
|
* @deprecated 4.0.0:5.0.0
|
|
*/
|
|
interface Requirements_Minifier
|
|
{
|
|
|
|
/**
|
|
* 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);
|
|
}
|