13 lines
252 B
PHP
13 lines
252 B
PHP
<?php
|
|
|
|
namespace WP_Rocket\Engine\Optimization\Minify;
|
|
|
|
interface ProcessorInterface {
|
|
/**
|
|
* Performs the optimization process on the given HTML
|
|
*
|
|
* @param string $html HTML content.
|
|
* @return string
|
|
*/
|
|
public function optimize( $html );
|
|
}
|