File "ProcessorInterface.php"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/ProcessorInterface.php
File
size: 252 B (252 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?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 );
}