File: /var/www/html/wp-content/plugins/plugin-check/includes/Checker/Preparation.php
<?php
/**
* Interface WordPress\Plugin_Check\Checker\Preparation
*
* @package plugin-check
*/
namespace WordPress\Plugin_Check\Checker;
use Exception;
/**
* Interface for a single preparation step.
*
* @since 1.0.0
*/
interface Preparation {
/**
* Runs preparation step for the environment and returns a closure as a cleanup function.
*
* @since 1.0.0
*
* @return callable Cleanup function to revert the changes made here.
*
* @throws Exception Thrown when preparation fails.
*/
public function prepare();
}