<?php /** * INTERFACE for rollout plugins * * @author hahn */ interface iBuildplugin { /** * Get an array of commands to check requirements * if the plugin is able to work * @return array */ public function checkRequirements(): array; /** * Get an array with shell commands to execute * @return array */ public function getBuildCommands(): array; }