Files
hub-insurance/wp-content/plugins/jetpack-boost/app/contracts/interface-needs-to-be-ready.php
T
2026-07-02 15:54:39 -06:00

12 lines
306 B
PHP

<?php
namespace Automattic\Jetpack_Boost\Contracts;
interface Needs_To_Be_Ready {
/**
* Check if the module is ready and already optimizing.
* This is useful for modules that need preparation before they can start serving the optimized output. E.g. Critical CSS.
*/
public function is_ready();
}