File "Minify_Environment_LiteSpeed.php"

Full Path: /home/mba/public_html/wp-content-20250807152928/plugins/w3-total-cache/Minify_Environment_LiteSpeed.php
File size: 456 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace W3TC;

/**
 * Minify rules generation for LiteSpeed
 */
class Minify_Environment_LiteSpeed {
	private $c;



	public function __construct( $config ) {
		$this->c = $config;
	}



	// force rewrites to work in order to get minify a chance to generate content
	public function w3tc_browsercache_rules_section( $section_rules, $section ) {
		if ( $section == 'cssjs' ) {
			$section_rules['rewrite'] = true;
		}

		return $section_rules;
	}
}