File "ProcessorInterface.php"
Full Path: /home/tekvhqgl/public_html/wp-content/plugins/wp-rocket-1-nov/inc/Engine/Optimization/Minify/ProcessorInterface.php
File size: 252 bytes
MIME-type: text/x-php
Charset: utf-8
<?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 );
}