Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | CRAP | |||||||||
| <?php | |
| namespace Environaut\Runner; | |
| use Environaut\Cache\IReadOnlyCache; | |
| use Environaut\Command\Command; | |
| use Environaut\Config\IConfig; | |
| use Environaut\Config\Parameters; | |
| /** | |
| * Interface all check running instances must implement. Runners | |
| * should get the necessary data via setters, then run() should | |
| * be called and the report getter used afterwards. | |
| */ | |
| interface IRunner | |
| { | |
| /** | |
| * Sets the readonly cache used by checks to determine if they've been run before and | |
| * if they can reuse prior settings to let users just confirm settings etc. | |
| * | |
| * The cache instance should've already been loaded and thus contain everything needed for the checks. | |
| * | |
| * @param IReadOnlyCache $cache instance that already contains all cached settings loaded for checks | |
| */ | |
| public function setCache(IReadOnlyCache $cache); | |
| /** | |
| * Sets the given config on the runner. | |
| * | |
| * @param IConfig $config config data | |
| */ | |
| public function setConfig(IConfig $config); | |
| /** | |
| * Sets the command on the runner to have access to the input and output. | |
| * | |
| * @param Command $command | |
| */ | |
| public function setCommand(Command $command); | |
| /** | |
| * Sets the given runtime parameter on the runner. | |
| * | |
| * @param Parameters $parameters runtime options understood by the runner | |
| */ | |
| public function setParameters(Parameters $parameters); | |
| /** | |
| * Execute the checks that are defined in the config and generate a report to consume by others. | |
| */ | |
| public function run(); | |
| /** | |
| * @return IReport report created by the runner | |
| */ | |
| public function getReport(); | |
| } |