File: /var/www/html/wp-content/plugins/plugin-check/includes/Checker/Checks/Abstract_Runtime_Check.php
<?php
/**
* Class WordPress\Plugin_Check\Checker\Checks\Abstract_Runtime_Check
*
* @package plugin-check
*/
namespace WordPress\Plugin_Check\Checker\Checks;
use Exception;
use WordPress\Plugin_Check\Checker\Check_Result;
use WordPress\Plugin_Check\Checker\Preparation;
use WordPress\Plugin_Check\Checker\Runtime_Check;
/**
* Abstract Runtime Check class.
*
* @since 1.0.0
*/
abstract class Abstract_Runtime_Check implements Runtime_Check, 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.
*/
abstract public function prepare();
/**
* Amends the given result by running the check on the associated plugin.
*
* @since 1.0.0
*
* @param Check_Result $result The check result to amend, including the plugin context to check.
*
* @throws Exception Thrown when the check fails with a critical error (unrelated to any errors detected as part of
* the check).
*/
abstract public function run( Check_Result $result );
}