File "ProcessorInterface.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/ProcessorInterface.php
File size: 252 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   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 );
}